Skip to content

Commit 9419167

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 6e8b452 commit 9419167

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
@@ -718,7 +718,7 @@ def main():
718718
# is missing then we weren't build with CinderX so ignoring the import
719719
# error is fine.
720720
try:
721-
import init_cinderx
721+
import init_cinderx # noqa: F401
722722
except ImportError:
723723
pass
724724
execsitecustomize()

0 commit comments

Comments
 (0)