Skip to content

Commit

Permalink
fix: formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
severinsimmler committed Jan 16, 2025
1 parent 6961d99 commit e07ed4f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mure/cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def __init__(self, path: Path = Path("mure-cache.shelve")):
if self.path.exists():
LOGGER.warning(f"Cache ({self.path}) already exists")

self._cache = shelve.open(str(self.path))
self._cache = shelve.open(str(self.path)) # noqa SIM115

def __del__(self):
"""Close the cache."""
Expand Down
2 changes: 1 addition & 1 deletion mure/core.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from typing import Generator
from collections.abc import Generator

from mure.cache import Cache
from mure.iterator import ResponseIterator
Expand Down

0 comments on commit e07ed4f

Please sign in to comment.