(cls, obj: F)
| 80 | |
| 81 | @classmethod |
| 82 | def from_obj(cls, obj: F) -> t.Optional["_PassArg"]: |
| 83 | if hasattr(obj, "jinja_pass_arg"): |
| 84 | return obj.jinja_pass_arg # type: ignore |
| 85 | |
| 86 | return None |
| 87 | |
| 88 | |
| 89 | def internalcode(f: F) -> F: |
no outgoing calls
no test coverage detected