Skip to content

Commit

Permalink
adding comments
Browse files Browse the repository at this point in the history
  • Loading branch information
LordFarquaadtheCreator committed Sep 6, 2024
1 parent 85cfb33 commit 0eef99f
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
parser.add_argument("-a", "--active", action="store_true")
parser.add_argument("-c", "--cabinet", action="store_true")
parser.add_argument("-t", "--testing", action="store_true")
parser.add_argument("-g", "--get-person")
parser.add_argument("-b", "--add-blacklist")
parser.add_argument("-g", "--get-person") # first name only
parser.add_argument("-b", "--add-blacklist") # uid only

args = parser.parse_args()

Expand All @@ -37,9 +37,7 @@

if args.get_person is not None:
res = d.get_person_by_name(args.get_person)

print(res)

exit(0)

if not isinstance(args.subject, str):
Expand Down

0 comments on commit 0eef99f

Please sign in to comment.