Skip to content

Commit

Permalink
black formatting dlc_reader.py
Browse files Browse the repository at this point in the history
  • Loading branch information
MilagrosMarin committed Jan 3, 2024
1 parent 9b61920 commit d1b86ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion element_deeplabcut/readers/dlc_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ def yml(self):
"""json-structured config.yaml file contents"""
if self._yml is None:
with open(self.yml_path, "rb") as f:
yaml_loader = yaml.YAML(typ='safe', pure=True)
yaml_loader = yaml.YAML(typ="safe", pure=True)
self._yml = yaml_loader.load(f)
return self._yml

Expand Down

0 comments on commit d1b86ce

Please sign in to comment.