nanom commited on
Commit
1c3c5fa
·
1 Parent(s): ed5ca41
Files changed (1) hide show
  1. utils.py +2 -2
utils.py CHANGED
@@ -18,8 +18,8 @@ class SampleClass:
18
 
19
  def __get(self, img_path):
20
  img_obj = self.zip_file.open(img_path)
21
- pill_img = Image.open(img_obj)
22
- img = np.array(pill_img)
23
  return img
24
 
25
 
 
18
 
19
  def __get(self, img_path):
20
  img_obj = self.zip_file.open(img_path)
21
+ img = Image.open(img_obj)
22
+ # img = np.array(img)
23
  return img
24
 
25