Skip to content

Commit 4cd055f

Browse files
committed
fix: ruff formatting in genome_sequence.py
1 parent e26176e commit 4cd055f

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

malariagen_data/anoph/genome_sequence.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ def __init__(
2929
virtual_contigs = dict()
3030
self._virtual_contigs = virtual_contigs
3131

32-
3332
@property
3433
def contigs(self) -> Tuple[str, ...]:
3534
"""Contigs in the reference genome."""
@@ -62,7 +61,7 @@ def _genome_ref_name(self) -> str:
6261

6362
def open_genome(self) -> zarr.hierarchy.Group:
6463
"""Open the reference genome zarr."""
65-
if not hasattr(self, '_cache_genome') or self._cache_genome is None:
64+
if not hasattr(self, "_cache_genome") or self._cache_genome is None:
6665
path = f"{self._base_path}/{self._genome_zarr_path}"
6766
store = _init_zarr_store(fs=self._fs, path=path)
6867
self._cache_genome = zarr.open_consolidated(store=store)

0 commit comments

Comments
 (0)