-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Replace general Ruff F401 exclusion with per-line-ignore
F401 ignores should be per-line and explicit rather than per-file and implicit. Closes: #34
- Loading branch information
Showing
2 changed files
with
4 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
from rdfproxy.adapter import SPARQLModelAdapter | ||
from rdfproxy.utils._types import _TModelConstructorCallable, _TModelInstance | ||
from rdfproxy.adapter import SPARQLModelAdapter # noqa: F401 | ||
from rdfproxy.utils._types import _TModelConstructorCallable, _TModelInstance # noqa: F401 | ||
from rdfproxy.utils.utils import ( | ||
get_bindings_from_query_result, | ||
instantiate_model_from_kwargs, | ||
get_bindings_from_query_result, # noqa: F401 | ||
instantiate_model_from_kwargs, # noqa: F401 | ||
) |