Skip to content

Commit e6bff03

Browse files
authored
Fix black linting
Refactor copy_history method signature for clarity.
1 parent a764b60 commit e6bff03

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

bioblend/galaxy/histories/__init__.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,7 @@ def create_history(self, name: str | None = None) -> dict[str, Any]:
5555
payload["name"] = name
5656
return self._post(payload)
5757

58-
def copy_history(
59-
self, history_id: str, name: str | None = None, all_datasets: bool = False
60-
) -> dict[str, Any]:
58+
def copy_history(self, history_id: str, name: str | None = None, all_datasets: bool = False) -> dict[str, Any]:
6159
"""
6260
Create a new history by copying an existing one.
6361

0 commit comments

Comments
 (0)