Skip to content

Commit

Permalink
Remove dev artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
PJ-Finlay committed Aug 15, 2024
1 parent a253add commit 1db4060
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions argostranslate/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,14 +58,6 @@
settings_file = config_dir / "settings.json"


def load_settings_dict() -> dict:
settings_dict = dict()
if settings_file.exists():
with open(settings_file) as settings_file_data:
settings_dict = json.load(open(settings_file))
assert type(settings_dict) is dict


def load_settings_dict() -> Dict[str, Any]:
settings_dict = dict()
if settings_file.exists():
Expand Down

0 comments on commit 1db4060

Please sign in to comment.