Skip to content

Commit

Permalink
Demo fixes (#100)
Browse files Browse the repository at this point in the history
  • Loading branch information
stevehenke authored Oct 18, 2024
1 parent 7b65032 commit 2cebd6f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ptychodus/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,10 +103,10 @@ def main() -> int:
fluorescenceInputFilePath: Path | None = None
fluorescenceOutputFilePath: Path | None = None

if parsedArgs.flourescence_input is not None:
if parsedArgs.fluorescence_input is not None:
fluorescenceInputFilePath = Path(parsedArgs.fluorescence_input.name)

if parsedArgs.flourescence_output is not None:
if parsedArgs.fluorescence_output is not None:
fluorescenceOutputFilePath = Path(parsedArgs.fluorescence_output.name)

return model.batchModeExecute(
Expand Down

0 comments on commit 2cebd6f

Please sign in to comment.