Skip to content

Commit

Permalink
Merge pull request #128 from niklassiemer/patch-1
Browse files Browse the repository at this point in the history
Fix syntax typo
  • Loading branch information
srmnitc authored Apr 25, 2024
2 parents c4ac2fd + e959dc7 commit 678f570
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion calphy/scheduler.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def __init__(self, options, cores=1, directory=os.getcwd()):
for (key, val) in options.items():
if key in self.queueoptions.keys():
if val is not None:
if val is not "":
if val != "":
self.queueoptions[key] = val
self.maincommand = ""

Expand Down

0 comments on commit 678f570

Please sign in to comment.