Skip to content
This repository has been archived by the owner on Dec 31, 2023. It is now read-only.

Commit

Permalink
Correct parameter placement
Browse files Browse the repository at this point in the history
  • Loading branch information
Garulf committed Apr 2, 2023
1 parent 1a69ec1 commit 3ede9e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flox/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ def plugindir(self):

@cached_property
def manifest(self):
with open(os.path.join(self.plugindir, PLUGIN_MANIFEST, encoding='utf-8'), 'r') as f:
with open(os.path.join(self.plugindir, PLUGIN_MANIFEST), 'r', encoding='utf-8') as f:
return json.load(f)

@cached_property
Expand Down

0 comments on commit 3ede9e0

Please sign in to comment.