Skip to content

Commit

Permalink
Apparently these aren't required
Browse files Browse the repository at this point in the history
  • Loading branch information
thebeanogamer committed Mar 6, 2022
1 parent 519b6ae commit 1f1190e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ractf/management/commands/create_user.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ class Command(BaseCommand):
def add_arguments(self, parser: CommandParser) -> None:
parser.add_argument("username", type=str)

parser.add_argument("--email", type=str, required=True)
parser.add_argument("--password", type=str, required=True)
parser.add_argument("--email", type=str)
parser.add_argument("--password", type=str)

parser.add_argument("--bot", action="store_true", help="Mark the user as a bot")
parser.add_argument("--visible", action="store_true", help="Make the user visible")
Expand Down

0 comments on commit 1f1190e

Please sign in to comment.