Skip to content

Commit 3dfd751

Browse files
committed
Clean up redundant parantheses
1 parent 3060639 commit 3dfd751

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

exasol/toolbox/nox/_release.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,19 +44,19 @@ def _create_parser() -> argparse.ArgumentParser:
4444
"--no-add",
4545
default=False,
4646
action="store_true",
47-
help=("Neither add nor commit the changes"),
47+
help="Neither add nor commit the changes",
4848
)
4949
parser.add_argument(
5050
"--no-branch",
5151
default=False,
5252
action="store_true",
53-
help=("Do not create a branch to commit the changes on"),
53+
help="Do not create a branch to commit the changes on",
5454
)
5555
parser.add_argument(
5656
"--no-pr",
5757
default=False,
5858
action="store_true",
59-
help=("Do not create a pull request for the changes"),
59+
help="Do not create a pull request for the changes",
6060
)
6161
return parser
6262

@@ -129,7 +129,7 @@ def run(*args: str):
129129

130130

131131
@nox.session(name="release:prepare", python=False)
132-
def prepare_release(session: Session, python=False) -> None:
132+
def prepare_release(session: Session) -> None:
133133
"""
134134
Prepares the project for a new release.
135135
"""

0 commit comments

Comments
 (0)