Removing unused args
#1
by
NathanGavenski
- opened
- frozen_lake.py +1 -1
frozen_lake.py
CHANGED
@@ -46,7 +46,7 @@ class ImageSet(GeneratorBasedBuilder):
|
|
46 |
)
|
47 |
]
|
48 |
|
49 |
-
def _generate_examples(self, images_paths
|
50 |
images = [join(images_paths, f) for f in listdir(images_paths) if isfile(join(images_paths, f))]
|
51 |
|
52 |
images_dict = {}
|
|
|
46 |
)
|
47 |
]
|
48 |
|
49 |
+
def _generate_examples(self, images_paths):
|
50 |
images = [join(images_paths, f) for f in listdir(images_paths) if isfile(join(images_paths, f))]
|
51 |
|
52 |
images_dict = {}
|