Skip to content
Snippets Groups Projects
Commit 81e21d77 authored by Christoph.Knote's avatar Christoph.Knote
Browse files

Minor fix

parent 474c6e3b
No related branches found
No related tags found
No related merge requests found
......@@ -33,7 +33,7 @@ class ExampleData:
self.path = path
self.files = { x.replace(".csv", ""): os.path.join(self.path, x) for x in os.listdir(self.path) if '.csv' in x }
examples = { x: ExampleData(os.path.join(examplesPath, x)) for x in os.listdir(examplesPath) }
examples = { x: ExampleData(os.path.join(examplesPath, x)) for x in os.listdir(examplesPath) if os.path.isdir( os.path.join(examplesPath, x))}
class Namelist:
'''
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment