Skip to content

Commit

Permalink
Include the os module for some workflow algorithms
Browse files Browse the repository at this point in the history
The os was available before in the old api when import all, it has passed without
notice.

Now, it has been bassed to those scripts using the os module.

re #7760
  • Loading branch information
gesnerpassos committed Aug 28, 2013
1 parent 2d02ff5 commit 5cd5c2f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
from mantid.kernel import StringListValidator, StringMandatoryValidator
from mantid.simpleapi import *
from mantid import config, logger, mtd
import os

class JumpFit(PythonAlgorithm):

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
from mantid.kernel import StringListValidator, StringMandatoryValidator
from mantid.api import PythonAlgorithm, AlgorithmFactory
from mantid import config
import os

class QLines(PythonAlgorithm):

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
from mantid.kernel import StringListValidator, StringMandatoryValidator
from mantid.simpleapi import *
from mantid import config, logger, mtd
import os

class Quest(PythonAlgorithm):

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
from mantid.kernel import StringListValidator, StringMandatoryValidator
from mantid.simpleapi import *
from mantid import config, logger, mtd
import os

class ResNorm(PythonAlgorithm):

Expand Down

0 comments on commit 5cd5c2f

Please sign in to comment.