We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6bf9a41 commit 5f5afc0Copy full SHA for 5f5afc0
2 files changed
stage5.2_fuller_application/pycasa/model/image_folder.py
@@ -47,7 +47,7 @@ def to_dataframe(self):
47
file_data = {FILENAME_COL: filename, NUM_FACE_COL: np.nan}
48
try:
49
file_data.update(img_file.metadata)
50
- except Exception as e:
+ except Exception:
51
pass
52
data.append(file_data)
53
stage5.2_fuller_application/pycasa/model/tests/test_image_folder.py
@@ -1,7 +1,6 @@
1
from os.path import dirname, join
2
from unittest import TestCase
3
4
-import numpy as np
5
import pandas as pd
6
7
from pycasa.model.image_folder import ImageFolder
0 commit comments