-
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support setting callbacks on env change; Move debug level set in env
- Loading branch information
1 parent
71b1b26
commit bb80d4c
Showing
3 changed files
with
20 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
from typing import Iterable, Callable | ||
|
||
class R2AiEnv(dict): | ||
def __init__(self): | ||
self._callbacks = {} | ||
|
||
def add_callback(self, key: str, callback: Callable): | ||
self._callbacks[key] = callback | ||
|
||
def __setitem__(self, __key, __value) -> None: | ||
if __key in self._callbacks: | ||
self._callbacks[__key](__value) | ||
return super().__setitem__(__key, __value) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters