We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d98ea3 commit 4e28ebdCopy full SHA for 4e28ebd
ngcsimlib/_src/parser/utils.py
@@ -145,6 +145,8 @@ def compileObject(obj):
145
deferred_compile = []
146
for name in dir(obj):
147
attr = getattr(obj, name)
148
+ if isinstance(attr, _methodWrapper):
149
+ attr = attr._method
150
if hasattr(attr, "_is_compilable") and not inspect.isclass(attr):
151
if isinstance(type(attr), ContextAwareObjectMeta):
152
compileObject(attr)
0 commit comments