initialize raw_merger python object with empty string

This commit is contained in:
Mario Fink 2020-08-14 11:41:49 +02:00
parent 4ce51b55c7
commit c328bf6945
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View File

@ -11,6 +11,7 @@ nohup.out
*.so *.so
raw_eater.cpp raw_eater.cpp
raw_meat.cpp
cyt/*.cpp cyt/*.cpp

View File

@ -69,7 +69,7 @@ for rf in rawlist :
print("convert and merge channels " + "\n" + 90*("-") + "\n") print("convert and merge channels " + "\n" + 90*("-") + "\n")
# setup new instance to merge channels # setup new instance to merge channels
eatmea = raw_meat.rawmerger(rawlist[0].encode()) eatmea = raw_meat.rawmerger(''.encode()) #rawlist[0].encode())
# add every single channel/file in list # add every single channel/file in list
for rf in rawlist : for rf in rawlist :