Skip to content

Commit

Permalink
Fix failing pylint check on Master (#13078)
Browse files Browse the repository at this point in the history
(cherry picked from commit 0655d51)
  • Loading branch information
kaxil committed Jan 21, 2021
1 parent e723969 commit 61f2993
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion docs/exts/docs_build/fetch_inventories.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@
from docs.exts.docs_build.docs_builder import ( # pylint: disable=no-name-in-module
get_available_providers_packages,
)
from docs.exts.docs_build.third_party_inventories import THIRD_PARTY_INDEXES
from docs.exts.docs_build.third_party_inventories import ( # pylint: disable=no-name-in-module
THIRD_PARTY_INDEXES,
)

CURRENT_DIR = os.path.dirname(__file__)
ROOT_DIR = os.path.abspath(os.path.join(CURRENT_DIR, os.pardir, os.pardir, os.pardir))
Expand Down
2 changes: 1 addition & 1 deletion docs/exts/docs_build/lint_checks.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
from itertools import chain
from typing import Iterable, List, Optional, Set

from docs.exts.docs_build.docs_builder import ALL_PROVIDER_YAMLS
from docs.exts.docs_build.docs_builder import ALL_PROVIDER_YAMLS # pylint: disable=no-name-in-module
from docs.exts.docs_build.errors import DocBuildError # pylint: disable=no-name-in-module

ROOT_PROJECT_DIR = os.path.abspath(
Expand Down

0 comments on commit 61f2993

Please sign in to comment.