(config)
| 67 | |
| 68 | |
| 69 | def get_casing_file(config): |
| 70 | casing_file = config["main"]["casing_file"] |
| 71 | if casing_file == "default": |
| 72 | casing_file = config_location() + "casing" |
| 73 | return casing_file |
| 74 | |
| 75 | |
| 76 | def skip_initial_comment(f_stream: TextIO) -> int: |
no test coverage detected