File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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 """
You can’t perform that action at this time.
0 commit comments