Skip to content

Commit

Permalink
remove print
Browse files Browse the repository at this point in the history
  • Loading branch information
aMahanna committed Jan 30, 2024
1 parent 3222aaf commit e40cae2
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions arango_datasets/datasets.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ def list_datasets(self) -> List[str]:
:return: Names of the available datasets to load.
:rtype: List[str]
"""
print(self.__dataset_names)
return self.__dataset_names

def dataset_info(self, dataset_name: str) -> Dict[str, Any]:
Expand All @@ -66,7 +65,6 @@ def dataset_info(self, dataset_name: str) -> Dict[str, Any]:
raise ValueError(f"Dataset '{dataset_name}' not found")

info: Dict[str, Any] = self.__metadata[dataset_name.upper()]
print(info)
return info

def load(
Expand Down

0 comments on commit e40cae2

Please sign in to comment.