Skip to content

Commit

Permalink
Error?
Browse files Browse the repository at this point in the history
  • Loading branch information
nlpsuge committed Nov 27, 2021
1 parent 556e02b commit 19cce5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xsession_manager/arguments_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ def handle_arguments(args: Namespace):

if list_sessions:
import os
walk: (list, list, str) = os.walk(constants.Locations.BASE_LOCATION_OF_SESSIONS)
walk = os.walk(constants.Locations.BASE_LOCATION_OF_SESSIONS)
for root, dirs, files in walk:
for file in files:
with open(Path(root, file), 'r') as f:
Expand Down

0 comments on commit 19cce5a

Please sign in to comment.