Skip to content

Commit

Permalink
Relative imports were replaced for absolute imports
Browse files Browse the repository at this point in the history
Closes: #18
  • Loading branch information
vdusek committed Jan 8, 2024
1 parent 6ce4e7d commit f68c1b8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

## [1.1.1](../../releases/tag/v1.1.1) - Unreleased

...
### Internal changes

- Relative imports were replaced for absolute imports

## [1.1.0](../../releases/tag/v1.1.0) - 2023-11-16

Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,8 @@ docstring-quotes = "double"
inline-quotes = "single"

[tool.ruff.lint.isort]
known-first-party = ["apify", "apify_client", "apify_shared"]
known-first-party = ["apify", "apify_client"]
known-local-folder = ["apify_shared"]

[tool.ruff.lint.pydocstyle]
convention = "google"
2 changes: 1 addition & 1 deletion src/apify_shared/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from typing import Generic, TypeVar

from .utils import ignore_docs
from apify_shared.utils import ignore_docs

T = TypeVar('T')

Expand Down

0 comments on commit f68c1b8

Please sign in to comment.