Skip to content

Commit

Permalink
fix silly syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
helenqu committed Oct 3, 2022
1 parent e9cb280 commit e00c8d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pippin/classifiers/scone.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ def _write_config_file(self, metadata_paths, lcdata_paths, mode, config_path, he
cfgfile.write(yaml.dump(config))

def _check_completion(self, squeue):
if Path(self.done_file).exists()
if Path(self.done_file).exists():
self.logger.debug(f"Found done file at {self.done_file}")
with open(self.done_file) as f:
if "SUCCESS" not in f.read().upper():
Expand Down

0 comments on commit e00c8d7

Please sign in to comment.