Skip to content

Commit

Permalink
Fixing linting for napari-hub-commons
Browse files Browse the repository at this point in the history
  • Loading branch information
manasaV3 committed Jan 16, 2024
1 parent 33e594d commit 234fa86
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def seed_data(self, put_item):
"2.2",
release_date="2023-03-01",
data=plugin_data("plugin-1", "2.2"),
is_latest=True
is_latest=True,
)
put_item(
"Plugin-2",
Expand Down
2 changes: 1 addition & 1 deletion napari-hub-commons/src/nhcommons/utils/adapter_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def get_first_valid_file(
return None

def get_file(
self, file: str = "", file_format: str = ""
self, file: str = "", file_format: str = ""
) -> Optional[Union[str, dict]]:
"""
Get file from github.
Expand Down
2 changes: 1 addition & 1 deletion napari-hub-commons/src/nhcommons/utils/github_adapter.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
_DEFAULT_DESCRIPTION = (
"The developer has not yet provided a napari-hub " "specific description."
)
_HUB_CONFIG_KEYS = {'labels'}
_HUB_CONFIG_KEYS = {"labels"}


def is_valid_repo_url(url: str) -> bool:
Expand Down

0 comments on commit 234fa86

Please sign in to comment.