Skip to content

Commit

Permalink
remove unused print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
sierra-moxon committed Dec 21, 2024
1 parent 911615e commit 7534676
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion linkml_runtime/loaders/rdf_loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def load_any(self, *args, **kwargs) -> Union[BaseModel, YAMLRoot, List[BaseModel
return self.load(*args, **kwargs)


def load(self, source: Union[str, TextIO, Graph, Path], target_class: Type[Union[BaseModel, YAMLRoot]], *, base_dir: Optional[str] = None,
def load(self, source: Union[str, TextIO, Graph], target_class: Type[Union[BaseModel, YAMLRoot]], *, base_dir: Optional[str] = None,
contexts: CONTEXTS_PARAM_TYPE = None, fmt: Optional[str] = 'turtle',
metadata: Optional[FileInfo] = None) -> Union[BaseModel, YAMLRoot]:
"""
Expand Down

0 comments on commit 7534676

Please sign in to comment.