diff --git a/RASP_support/DrawCompFlow.py b/RASP_support/DrawCompFlow.py index 40c9d24..c41705a 100644 --- a/RASP_support/DrawCompFlow.py +++ b/RASP_support/DrawCompFlow.py @@ -5,9 +5,9 @@ import string # adds useful functions to all the Unfinisheds -# using dummyimport to import analyse with the relative "." because python +# using dummyimport to import analyse with the relative "." because python # won't let me do "import .analyse" -from .analyse import dummyimport +from .analyse import dummyimport # fix: in ordering, we always connect bottom FF to top select. but sometimes, @@ -608,4 +608,5 @@ def draw_comp_flow(self, w, filename=None, if not keep_dot: os.remove(filename) + dummyimport = None \ No newline at end of file diff --git a/RASP_support/Sugar.py b/RASP_support/Sugar.py index ba7b2f7..da80d51 100644 --- a/RASP_support/Sugar.py +++ b/RASP_support/Sugar.py @@ -5,7 +5,7 @@ from .DrawCompFlow import dummyimport # DrawCompFlow is not at all necessary for sugar, but sugar is really the # top-level rasp file we import, and nice to have draw_comp_flow added into -# the sequences already on load. also, don't *really* need to import +# the sequences already on load. also, don't *really* need to import # dummy specifically, but python won't accept "import .DrawCompFlow" # while it will accept some form of "from .DrawCompFlow import ..." diff --git a/RASP_support/__main__.py b/RASP_support/__main__.py index 8650b4d..3ee2c72 100644 --- a/RASP_support/__main__.py +++ b/RASP_support/__main__.py @@ -1,3 +1,3 @@ from .REPL import REPL -REPL().run() \ No newline at end of file +REPL().run() diff --git a/RASP_support/analyse.py b/RASP_support/analyse.py index fb65bd0..1a023fe 100644 --- a/RASP_support/analyse.py +++ b/RASP_support/analyse.py @@ -354,4 +354,5 @@ def pre_aggregate_comp(seq): vreal = vreal[seq.output_index] return vreal -dummyimport = None \ No newline at end of file + +dummyimport = None