Skip to content
Snippets Groups Projects
Commit 6247aca2 authored by Grégoire Kubler's avatar Grégoire Kubler
Browse files

chore : formatted python files

parent cf3b5411
No related branches found
No related tags found
No related merge requests found
...@@ -5,10 +5,11 @@ import numpy as np ...@@ -5,10 +5,11 @@ import numpy as np
class test_tensor(unittest.TestCase): class test_tensor(unittest.TestCase):
"""Test tensor binding """Test tensor binding"""
"""
def setUp(self): def setUp(self):
pass pass
def tearDown(self): def tearDown(self):
pass pass
...@@ -47,5 +48,6 @@ class test_tensor(unittest.TestCase): ...@@ -47,5 +48,6 @@ class test_tensor(unittest.TestCase):
# for i,j in zip(t.dims(), np_array.shape): # for i,j in zip(t.dims(), np_array.shape):
# self.assertEqual(i,j) # self.assertEqual(i,j)
if __name__ == '__main__':
if __name__ == "__main__":
unittest.main() unittest.main()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment