Skip to content

Commit

Permalink
🎨(backend) remove redundant parentheses
Browse files Browse the repository at this point in the history
These parentheses seem useless to me, remove them.
  • Loading branch information
lebaudantoine committed Dec 16, 2024
1 parent a110111 commit d18de5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/demo/management/commands/createsuperuser.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def add_arguments(self, parser):
"""Define required arguments "email" and "password"."""
parser.add_argument(
"--email",
help=("Email for the user."),
help="Email for the user.",
)
parser.add_argument(
"--password",
Expand Down

0 comments on commit d18de5b

Please sign in to comment.