Skip to content

Commit 6d16c18

Browse files
committed
project:fix
1 parent 0558b82 commit 6d16c18

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

exasol/toolbox/nox/_format.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
def _code_format(session: Session, mode: Mode, files: Iterable[str]) -> None:
1717
def command(*args: str) -> list[str]:
18-
return args if mode==Mode.Fix else list(args) + ["--check"]
18+
return args if mode == Mode.Fix else list(args) + ["--check"]
1919

2020
session.run(*command("poetry", "run", "isort"), *files)
2121
session.run(*command("poetry", "run", "black"), *files)
@@ -50,7 +50,7 @@ def fmt_check(session: Session) -> None:
5050

5151
class XSession:
5252
def run(self, *args):
53-
print(f'session.run(args: {args})')
53+
print(f"session.run(args: {args})")
5454

5555

5656
if __name__ == "__main__":

0 commit comments

Comments
 (0)