Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Oct 28, 2024
1 parent b20a1f6 commit a713e71
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test_generate_embeddings.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
import unittest
from face_recognition_module import generate_embeddings # Replace with actual module name

from face_recognition_module import \
generate_embeddings # Replace with actual module name


class TestGenerateEmbeddings(unittest.TestCase):
def test_invalid_face_data(self):
Expand All @@ -21,5 +24,6 @@ def test_large_face_data(self):
with self.assertRaises(ValueError):
generate_embeddings(large_face_data)


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

0 comments on commit a713e71

Please sign in to comment.