Skip to content

Commit 3223766

Browse files
committed
Address comments
1 parent 4f81e76 commit 3223766

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cg/apps/housekeeper/hk.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -423,11 +423,11 @@ def is_fastq_or_spring_in_all_bundles(self, bundle_names: list[str]) -> bool:
423423
return all(sequencing_files_in_hk.values())
424424

425425
def get_non_archived_files(self, bundle_name: str, tags: Optional[list] = None) -> list[File]:
426-
"""Returns all non-archived files from a given bundle, tagged with the given tags"""
426+
"""Returns all non-archived files from a given bundle, tagged with the given tags."""
427427
return self._store.get_non_archived_files(bundle_name=bundle_name, tags=tags or [])
428428

429429
def get_archived_files(self, bundle_name: str, tags: list | None = None) -> list[File]:
430-
"""Returns all archived files from a given bundle, tagged with the given tags"""
430+
"""Returns all archived files from a given bundle, tagged with the given tags."""
431431
return self._store.get_archived_files(bundle_name=bundle_name, tags=tags or [])
432432

433433
def add_archives(self, files: list[Path], archive_task_id: int) -> None:

0 commit comments

Comments
 (0)