diff --git a/python/damask/solver/_marc.py b/python/damask/solver/_marc.py index 4e626f9bb..22e9842f5 100644 --- a/python/damask/solver/_marc.py +++ b/python/damask/solver/_marc.py @@ -3,10 +3,9 @@ import subprocess import shlex import string -from ._solver import Solver from .._environment import Environment -class Marc(Solver): +class Marc: """Wrapper to run DAMASK with MSCMarc.""" def __init__(self,version=Environment().options['MARC_VERSION']): diff --git a/python/damask/solver/_solver.py b/python/damask/solver/_solver.py deleted file mode 100644 index c1ca7ff69..000000000 --- a/python/damask/solver/_solver.py +++ /dev/null @@ -1,6 +0,0 @@ -class Solver(): - """ - General class for solver specific functionality. - - Sub-classed by the individual solvers. - """