22 lines
398 B
Python
22 lines
398 B
Python
|
|
from FiCurve import FICurve
|
|
from CellData import icelldata_of_dir
|
|
import os
|
|
import helperFunctions as hf
|
|
from AdaptionCurrent import Adaption
|
|
from functionalityTests import *
|
|
# TODO command line interface needed/nice ?
|
|
|
|
|
|
def main():
|
|
|
|
for cell_data in icelldata_of_dir("./data/"):
|
|
print()
|
|
print(cell_data.get_data_path())
|
|
|
|
quit()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|