Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
johanneskoester committed Feb 16, 2024
1 parent fa09c9f commit ac8bd33
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
6 changes: 4 additions & 2 deletions poetry_snakemake_plugin/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,12 @@

class ScaffoldSnakemakePluginCommandBase(Command, ABC):
@abstractmethod
def get_templates(self) -> List[str]: ...
def get_templates(self) -> List[str]:
...

@abstractmethod
def get_plugin_type(self) -> str: ...
def get_plugin_type(self) -> str:
...

def get_dependencies(self) -> List[str]:
return [f"snakemake-interface-{self.get_plugin_type()}-plugins"]
Expand Down
3 changes: 2 additions & 1 deletion poetry_snakemake_plugin/templates/storage-plugins/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ def get_query(self, tmp_path) -> str:
# is present in the storage, as it will not be created.
...

def get_query_not_existing(self, tmp_path) -> str: ...
def get_query_not_existing(self, tmp_path) -> str:
...

def get_storage_provider_cls(self) -> Type[StorageProviderBase]:
# Return the StorageProvider class of this plugin
Expand Down

0 comments on commit ac8bd33

Please sign in to comment.