Commit b5caa071 authored by Martin Blanchard's avatar Martin Blanchard
Browse files

.pylintrc: Add boto3 and grpc to the list of known third parties

This should fix third party import linting warnings complaining that
grpc should be imported before boto3 (wrong-import-order).
parent cc4b0db4
Loading
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -454,7 +454,9 @@ int-import-graph=
known-standard-library=

# Force import order to recognize a module as part of a third party library.
known-third-party=enchant
known-third-party=boto3,
                  enchant,
                  grpc


[DESIGN]