Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Julio Martinez committed Dec 20, 2024
1 parent b17d99a commit a54bcb3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions python-sdk/tests/test_image_hash.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import unittest
import os
import shutil
import unittest

from indexify.functions_sdk.image import BASE_IMAGE_NAME, Image

Expand All @@ -12,7 +12,7 @@ def setUp(self):
os.mkdir("copy_test_dir")
with open("copy_test_dir/test_file", "w") as fp:
fp.write("Test data\n")

def tearDown(self):
shutil.rmtree("copy_test_dir")

Expand Down Expand Up @@ -55,5 +55,6 @@ def newTestImage(self):
)
return i


if __name__ == "__main__":
unittest.main()

0 comments on commit a54bcb3

Please sign in to comment.