Skip to content

Commit

Permalink
backward compatible function name in structured_data
Browse files Browse the repository at this point in the history
  • Loading branch information
dmichaels-harvard committed Mar 21, 2024
1 parent ed0dde1 commit c41836a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions dcicutils/structured_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,9 @@ def load_file(self, file: str) -> None:
return self._load_normal_file(file)
return self._load_normal_file(file)

def _load_file(self, file: str) -> None:
return self.load_file(file)

def _load_normal_file(self, file: str) -> None:
if file.endswith(".csv") or file.endswith(".tsv"):
self._load_csv_file(file)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "dcicutils"
version = "8.8.1.1b3" # TODO: To become 8.8.2
version = "8.8.1.1b4" # TODO: To become 8.8.2
description = "Utility package for interacting with the 4DN Data Portal and other 4DN resources"
authors = ["4DN-DCIC Team <support@4dnucleome.org>"]
license = "MIT"
Expand Down

0 comments on commit c41836a

Please sign in to comment.