(file_path)
| 358 | |
| 359 | |
| 360 | def _build_name_from_path(file_path): |
| 361 | filename = os.path.basename(file_path) |
| 362 | name = os.path.splitext(filename)[0] |
| 363 | return name.strip() |
| 364 | |
| 365 | |
| 366 | def read_short(file_path, json_object): |
no outgoing calls
no test coverage detected