Island: Remove Environment.get_config()

This commit is contained in:
Mike Salvatore 2021-11-19 08:32:57 -05:00
parent e0fc3cec2a
commit 1231b6aa6c
1 changed files with 0 additions and 4 deletions

View File

@ -15,7 +15,6 @@ class Environment(object, metaclass=ABCMeta):
_testing = False
def __init__(self, config: EnvironmentConfig):
self._config = config
self._testing = False # Assume env is not for unit testing.
@property
@ -25,6 +24,3 @@ class Environment(object, metaclass=ABCMeta):
@testing.setter
def testing(self, value):
self._testing = value
def get_config(self) -> EnvironmentConfig:
return self._config