Removed FIXME

This commit is contained in:
GodSaveTheDoge 2021-05-11 22:23:48 +02:00
parent 56c3ecd4c2
commit 4318d418d8
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ class ConstantValue:
name: str
value: object
def _traceFun(frame: FrameType, event: str, arg: object) -> None: # FIXME
def _traceFun(frame: FrameType, event: str, arg: object) -> None:
for constant in constMap[frame]:
if constant.name in frame.f_locals and frame.f_locals[constant.name] != constant.value:
frame.f_locals[constant.name] = constant.value