Skip to content
Snippets Groups Projects

introduction of pathlib.Path

Merged Florian Obersteiner requested to merge (removed):master into master
1 unresolved thread
+ 2
1
@@ -6,7 +6,8 @@ import numpy as np
import icartt
# working directory, example files
wd, fns = pathlib.Path('.'), pathlib.Path('./examples').glob('*.ict')
wd = pathlib.Path(__file__).parent
fns = (wd/'examples').glob('*.ict')
def compareFiles(fn, strIn, strOut, skiplines=0, nlines=-1): # pragma: no cover
strOut.seek(0)
Loading