From 4decae967aabd8155633c844a2668265ad9edf1c Mon Sep 17 00:00:00 2001 From: Martin Diehl Date: Sat, 21 Mar 2020 20:18:46 +0100 Subject: [PATCH] nothing to inherit .. --- python/damask/solver/_marc.py | 3 +-- python/damask/solver/_solver.py | 6 ------ 2 files changed, 1 insertion(+), 8 deletions(-) delete mode 100644 python/damask/solver/_solver.py 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. - """