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 0558b82 commit 6d16c18Copy full SHA for 6d16c18
exasol/toolbox/nox/_format.py
@@ -15,7 +15,7 @@
15
16
def _code_format(session: Session, mode: Mode, files: Iterable[str]) -> None:
17
def command(*args: str) -> list[str]:
18
- return args if mode==Mode.Fix else list(args) + ["--check"]
+ return args if mode == Mode.Fix else list(args) + ["--check"]
19
20
session.run(*command("poetry", "run", "isort"), *files)
21
session.run(*command("poetry", "run", "black"), *files)
@@ -50,7 +50,7 @@ def fmt_check(session: Session) -> None:
50
51
class XSession:
52
def run(self, *args):
53
- print(f'session.run(args: {args})')
+ print(f"session.run(args: {args})")
54
55
56
if __name__ == "__main__":
0 commit comments