Skip to content

Commit e7a0329

Browse files
committed
Remove comments
1 parent 55bde03 commit e7a0329

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

src/vivarium/framework/engine.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -165,12 +165,8 @@ def __init__(
165165
self._randomness = self._plugin_manager.get_plugin(RandomnessManager)
166166
self._data = self._plugin_manager.get_plugin(ArtifactManager)
167167

168-
# for name, controller in self._plugin_manager.get_optional_controllers().items():
169-
# setattr(self, f"_{name}", controller)
170-
171168
optional_managers = self._plugin_manager.get_optional_controllers()
172169
for name in optional_managers:
173-
# controller: Manager = optional_managers[name]
174170
setattr(self, f"_{name}", optional_managers[name])
175171

176172
# The order the managers are added is important. It represents the
@@ -224,12 +220,12 @@ def name(self) -> str:
224220
@property
225221
def current_time(self) -> ClockTime:
226222
"""Returns the current simulation time."""
227-
current_time: ClockTime = self._clock.time
223+
current_time = self._clock.time
228224
return current_time
229225

230226
def get_results(self) -> dict[str, pd.DataFrame]:
231227
"""Return the formatted results."""
232-
results: dict[str, pd.DataFrame] = self._results.get_results()
228+
results = self._results.get_results()
233229
return results
234230

235231
def run_simulation(self) -> None:

0 commit comments

Comments
 (0)