Skip to content

Commit

Permalink
use != instead of not ==
Browse files Browse the repository at this point in the history
  • Loading branch information
cisaacstern committed Sep 1, 2023
1 parent 1a51ec1 commit fd77b7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pangeo_forge_runner/commands/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ def initialize(self, argv=None):
self.load_config_file(self.config_file)
if (
not os.path.exists(self.config_file)
and not self.config_file == "pangeo_forge_runner_config.py"
and self.config_file != "pangeo_forge_runner_config.py"
):
# Throw an explicit error and exit if config file isn't present
print(
Expand Down

0 comments on commit fd77b7d

Please sign in to comment.