FEM: z88, delete not needed and not used variable

This commit is contained in:
Bernd Hahnebach
2018-12-20 19:40:47 +01:00
committed by Yorik van Havre
parent ab916fefe7
commit 56e9e92fd5

View File

@@ -39,9 +39,6 @@ from .. import settings
from . import writer
_inputFileName = None
class Check(run.Check):
def run(self):
@@ -53,7 +50,6 @@ class Check(run.Check):
class Prepare(run.Prepare):
def run(self):
global _inputFileName
self.pushStatus("Preparing input files...\n")
c = _Container(self.analysis)
w = writer.FemInputWriterZ88(
@@ -72,9 +68,7 @@ class Prepare(run.Prepare):
self.pushStatus("Write completed!")
else:
self.pushStatus("Writing Z88 input files failed!")
_inputFileName = os.path.splitext(os.path.basename(path))[0] # AFAIK empty for z88
# print(path)
# print(_inputFileName)
class Solve(run.Solve):