Skip to content

Commit

Permalink
Merge branch 'main' into 0_5_4_release
Browse files Browse the repository at this point in the history
  • Loading branch information
MSAdministrator authored Nov 19, 2021
2 parents 0878923 + 68a577a commit fa80f10
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions atomic_operator/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
__version__ = "0.5.4"


from .atomic_operator import AtomicOperator
2 changes: 1 addition & 1 deletion atomic_operator/configparser.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def __init__(self, config_file=None, techniques=None, test_guids=None,
))

def __load_config(self, config_file):
if self.get_abs_path(config_file):
if config_file and self.get_abs_path(config_file):
config_file = self.get_abs_path(config_file)
if not os.path.exists(config_file):
raise FileNotFoundError('Please provide a config_file path that exists')
Expand Down

0 comments on commit fa80f10

Please sign in to comment.