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

Minor fix

parent 474c6e3b
Branches
Tags
No related merge requests found
...@@ -33,7 +33,7 @@ class ExampleData: ...@@ -33,7 +33,7 @@ class ExampleData:
self.path = path 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 } 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: class Namelist:
''' '''
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment