|
51 | 51 | # gitdb all the time in their imports. They are not in __all__, at least currently,
|
52 | 52 | # because they could be removed or changed at any time, and so should not be considered
|
53 | 53 | # conceptually public to code outside GitPython. Linters of course do not like it.
|
54 |
| -from gitdb.util import ( # noqa: F401 # @IgnorePep8 |
55 |
| - LazyMixin, # @UnusedImport |
56 |
| - LockedFD, # @UnusedImport |
57 |
| - bin_to_hex, # @UnusedImport |
58 |
| - file_contents_ro_filepath, # @UnusedImport |
59 |
| - file_contents_ro, # @UnusedImport |
60 |
| - hex_to_bin, # @UnusedImport |
| 54 | +from gitdb.util import ( |
| 55 | + LazyMixin, # noqa: F401 |
| 56 | + LockedFD, # noqa: F401 |
| 57 | + bin_to_hex, # noqa: F401 |
| 58 | + file_contents_ro_filepath, # noqa: F401 |
| 59 | + file_contents_ro, # noqa: F401 |
| 60 | + hex_to_bin, # noqa: F401 |
61 | 61 | make_sha,
|
62 |
| - to_bin_sha, # @UnusedImport |
63 |
| - to_hex_sha, # @UnusedImport |
| 62 | + to_bin_sha, # noqa: F401 |
| 63 | + to_hex_sha, # noqa: F401 |
64 | 64 | )
|
65 | 65 |
|
66 | 66 | # typing ---------------------------------------------------------
|
|
0 commit comments