Skip to content

Commit

Permalink
remove ununsed arg for tempfolder
Browse files Browse the repository at this point in the history
  • Loading branch information
kraanzu committed Oct 16, 2024
1 parent 2741ed6 commit 6823b0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_core/test_sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
class TestSync(CoreTestBase):
def test_sync(self):
# create a temporary folder
temp_folder = tempfile.TemporaryDirectory(delete=False)
temp_folder = tempfile.TemporaryDirectory()
temp_db = Path(temp_folder.name) / "dooit1.db"
TEMP_CONN = f"sqlite:////{temp_db}"

Expand Down

0 comments on commit 6823b0a

Please sign in to comment.