Skip to content

Commit

Permalink
Add black formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
joshmoore committed Feb 14, 2024
1 parent 1e756c6 commit af91f8d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions zarr/tests/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -2050,6 +2050,7 @@ def test_nbytes_stored(self):
class TestArrayWithDBMStoreBerkeleyDB(TestArray):
def create_store(self):
import bsddb3

path = mktemp(suffix=".dbm")
atexit.register(os.remove, path)
store = DBMStore(path, flag="n", open=bsddb3.btopen)
Expand Down Expand Up @@ -2771,6 +2772,7 @@ def test_nbytes_stored(self):
class TestArrayWithDBMStoreV3BerkeleyDB(TestArrayV3):
def create_store(self) -> DBMStoreV3:
import bsddb3

path = mktemp(suffix=".dbm")
atexit.register(os.remove, path)
store = DBMStoreV3(path, flag="n", open=bsddb3.btopen)
Expand Down

0 comments on commit af91f8d

Please sign in to comment.