(func_ref)
| 121 | |
| 122 | |
| 123 | def get_function_args(func_ref): |
| 124 | try: |
| 125 | return [p for p in inspect.getfullargspec(func_ref).args if p != "self"] |
| 126 | except: |
| 127 | return None |
| 128 | |
| 129 | |
| 130 | def store_class_fields(class_ref, args_passed): |
no outgoing calls
no test coverage detected