(filename: str, check_hidden: bool)
| 776 | |
| 777 | |
| 778 | def is_hidden(filename: str, check_hidden: bool) -> bool: |
| 779 | bfilename = os.path.basename(filename) |
| 780 | |
| 781 | return bfilename not in ("", ".", "..") and ( |
| 782 | not check_hidden and bfilename[0] == "." |
| 783 | ) |
| 784 | |
| 785 | |
| 786 | def is_text_file(filename: str) -> bool: |
no outgoing calls
no test coverage detected
searching dependent graphs…