rocioadlc commited on
Commit
bf68858
1 Parent(s): 1ff05ed

Update resize.py

Browse files
Files changed (1) hide show
  1. resize.py +11 -11
resize.py CHANGED
@@ -52,40 +52,40 @@ def main():
52
 
53
 
54
  #BATTERY
55
- fileWalk(glassDir, os.path.join(destPath, 'battery'))
56
 
57
  #BIOLOGICAL
58
- fileWalk(paperDir, os.path.join(destPath, 'biological'))
59
 
60
  #BROWN-GLASS
61
- fileWalk(cardboardDir, os.path.join(destPath, 'brown-glass'))
62
 
63
  #CARDBOARD
64
- fileWalk(plasticDir, os.path.join(destPath, 'cardboard'))
65
 
66
  #CLOTHES
67
- fileWalk(metalDir, os.path.join(destPath, 'clothes'))
68
 
69
  #GREEN-GLASS
70
- fileWalk(trashDir, os.path.join(destPath, 'green-glass'))
71
 
72
  #METAL
73
- fileWalk(glassDir, os.path.join(destPath, 'metal'))
74
 
75
  #PAPER
76
  fileWalk(paperDir, os.path.join(destPath, 'paper'))
77
 
78
  #PLASTIC
79
- fileWalk(cardboardDir, os.path.join(destPath, 'plastic'))
80
 
81
  #SHOES
82
- fileWalk(plasticDir, os.path.join(destPath, 'shoes'))
83
 
84
  #TRASH
85
- fileWalk(metalDir, os.path.join(destPath, 'trash'))
86
 
87
  #WHITE-GLASS
88
- fileWalk(trashDir, os.path.join(destPath, 'white-glass'))
89
 
90
  if __name__ == '__main__':
91
  main()
 
52
 
53
 
54
  #BATTERY
55
+ fileWalk(batteryDir, os.path.join(destPath, 'battery'))
56
 
57
  #BIOLOGICAL
58
+ fileWalk(biologicalDir , os.path.join(destPath, 'biological'))
59
 
60
  #BROWN-GLASS
61
+ fileWalk(brown-glassDir, os.path.join(destPath, 'brown-glass'))
62
 
63
  #CARDBOARD
64
+ fileWalk(cardboardDir, os.path.join(destPath, 'cardboard'))
65
 
66
  #CLOTHES
67
+ fileWalk(clothesDir, os.path.join(destPath, 'clothes'))
68
 
69
  #GREEN-GLASS
70
+ fileWalk(green-glassDir, os.path.join(destPath, 'green-glass'))
71
 
72
  #METAL
73
+ fileWalk(metalDir, os.path.join(destPath, 'metal'))
74
 
75
  #PAPER
76
  fileWalk(paperDir, os.path.join(destPath, 'paper'))
77
 
78
  #PLASTIC
79
+ fileWalk(plasticdDir, os.path.join(destPath, 'plastic'))
80
 
81
  #SHOES
82
+ fileWalk(shoesDir, os.path.join(destPath, 'shoes'))
83
 
84
  #TRASH
85
+ fileWalk(trashDir, os.path.join(destPath, 'trash'))
86
 
87
  #WHITE-GLASS
88
+ fileWalk(white-glassDir, os.path.join(destPath, 'white-glass'))
89
 
90
  if __name__ == '__main__':
91
  main()