We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9bb84a commit f33a6ecCopy full SHA for f33a6ec
tests/test_examples.py
@@ -64,7 +64,7 @@ class ExamplesConfig(BaseExamplesConfig):
64
65
def ruff_config(self) -> tuple[str, ...]:
66
config = super().ruff_config()
67
- if self.known_first_party:
+ if self.known_first_party: # pragma: no branch
68
config = (*config, '--config', f'lint.isort.known-first-party = {self.known_first_party}')
69
if self.known_local_folder:
70
config = (*config, '--config', f'lint.isort.known-local-folder = {self.known_local_folder}')
0 commit comments