Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
shaneknapp committed Dec 13, 2023
1 parent eae76fb commit 143f5d0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions scripts/delete-unused-users.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,33 +172,33 @@ def main(args):
argparser.add_argument(
'-H',
'--hub_url',
help='Fully qualified URL to the JupyterHub (optional if using -f <credentials>)'
help='Fully qualified URL to the JupyterHub (optional if using -f <credentials>).'
)
argparser.add_argument(
'--dry_run',
action='store_true',
help='Dry run without deleting users'
help='Dry run without deleting users.'
)
argparser.add_argument(
'--inactive_since',
default='hours=24',
type=parse_timedelta,
help='Period of inactivity after which users are considered for deletion (literal string constructor values for timedelta objects)'
help='Period of inactivity after which users are considered for deletion (literal string constructor values for timedelta objects).'
# https://docs.python.org/3/library/datetime.html#timedelta-objects
)
argparser.add_argument(
'-v',
'--verbose',
dest='verbose',
action='store_true',
help='Set info log level'
help='Set info log level.'
)
argparser.add_argument(
'-d',
'--debug',
dest='debug',
action='store_true',
help='Set debug log level'
help='Set debug log level.'
)
args = argparser.parse_args()

Expand Down

0 comments on commit 143f5d0

Please sign in to comment.