fusion-flap / flap

Fusion Library of Analysis Programs
MIT License
11 stars 5 forks source link

FLAP storage question / enhancement proposal #76

Closed thelampire closed 4 years ago

thelampire commented 4 years ago

Every time I recompile a file which has an import flap in the beginning, the flap data_objects are gone from the memory. This creates a much slower workflow. Would it be possible to do something about this? How can I overcome this issue?

thelampire commented 4 years ago

The following solution is working for the beginning of the file: try: flap except: import flap

This way the flap storage is only reloaded if any of the core flap modules are modified. This is good enough for me, I'll close the issue.