(message: str)
| 48 | BLENDER_VERSIONS += [Version(5, i) for i in range(0, BLENDER_5_MAX_VERSION + 1)] |
| 49 | |
| 50 | def log(message: str): |
| 51 | if log_file is None: |
| 52 | raise RuntimeError("Log file was null!") |
| 53 | with log_mutex: |
| 54 | log_file.write(message) |
| 55 | |
| 56 | def process_attr(attr, section, node: str, version: Version) -> None: |
| 57 | # Get name |
no outgoing calls
no test coverage detected