Skip to content

Commit

Permalink
Within ImplicitAnalysis, modify opti and opti_provided properties…
Browse files Browse the repository at this point in the history
… and setters/getters to not be abstract.
  • Loading branch information
peterdsharpe committed Apr 22, 2023
1 parent 4103995 commit 05cc1a4
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions aerosandbox/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -341,27 +341,23 @@ def __init__(self,
super().__init__(self.message)

@property
@abstractmethod
def opti(self):
try:
return self._opti
except AttributeError:
raise self.ImplicitAnalysisInitError()

@opti.setter
@abstractmethod
def opti(self, value: Opti):
self._opti = value

@property
@abstractmethod
def opti_provided(self):
try:
return self._opti_provided
except AttributeError:
raise self.ImplicitAnalysisInitError()

@opti_provided.setter
@abstractmethod
def opti_provided(self, value: bool):
self._opti_provided = value

0 comments on commit 05cc1a4

Please sign in to comment.