Skip to content

Commit f2f04ce

Browse files
Yhg1smeta-codesync[bot]
authored andcommitted
Disable unused import check on the import of init_cinderx
Summary: Suppress linter warnings on the unused import of init_cinderx, which is imported for side-effects only. Reviewed By: jermenkoo Differential Revision: D114429859 fbshipit-source-id: 731601974a7281e9b3507938c0a85160b41f84fc
1 parent 6bc2ec1 commit f2f04ce

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/site.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1122,7 +1122,7 @@ def main():
11221122
# is missing then we weren't build with CinderX so ignoring the import
11231123
# error is fine.
11241124
try:
1125-
import init_cinderx
1125+
import init_cinderx # noqa: F401
11261126
except ImportError:
11271127
pass
11281128
execsitecustomize()

0 commit comments

Comments
 (0)