Skip to content

Commit

Permalink
Add abstract methods implementation in StaticEnvironment
Browse files Browse the repository at this point in the history
  • Loading branch information
nik committed Mar 26, 2024
1 parent 8ef9b78 commit e631d0f
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions adala/environments/static_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,3 +139,14 @@ def restore(self):
"""
raise NotImplementedError("StaticEnvironment does not support save/restore.")

def initialize(self):
"""
Initialize the StaticEnvironment.
"""
pass

def finalize(self):
"""
Finalize the StaticEnvironment.
"""
pass

0 comments on commit e631d0f

Please sign in to comment.