Skip to content

Commit

Permalink
fix: adjusted path for directory input
Browse files Browse the repository at this point in the history
  • Loading branch information
muellerdo committed Jan 23, 2024
1 parent 8f5ad29 commit 78c7b94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@
PREDICTION_PATH = args.prediction

INPUTS = args.input
if os.path.isdir(INPUTS[0]) : INPUTS = os.listdir(INPUTS[0])
if os.path.isdir(INPUTS[0]) : INPUTS = [os.path.join(INPUTS[0], x) for x in os.listdir(INPUTS[0])]

RES_PATH = args.output # location of full slides
if not os.path.exists(RES_PATH):
Expand Down

0 comments on commit 78c7b94

Please sign in to comment.