Skip to content

Commit 5f5afc0

Browse files
Flake8
1 parent 6bf9a41 commit 5f5afc0

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

stage5.2_fuller_application/pycasa/model/image_folder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def to_dataframe(self):
4747
file_data = {FILENAME_COL: filename, NUM_FACE_COL: np.nan}
4848
try:
4949
file_data.update(img_file.metadata)
50-
except Exception as e:
50+
except Exception:
5151
pass
5252
data.append(file_data)
5353

stage5.2_fuller_application/pycasa/model/tests/test_image_folder.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
from os.path import dirname, join
22
from unittest import TestCase
33

4-
import numpy as np
54
import pandas as pd
65

76
from pycasa.model.image_folder import ImageFolder

0 commit comments

Comments
 (0)