Skip to content

Commit

Permalink
Linting.
Browse files Browse the repository at this point in the history
  • Loading branch information
domdfcoding committed Sep 4, 2020
1 parent 5a51bfd commit 2495a06
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions sphinx_toolbox/installation.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,10 +239,10 @@ class InstallationDirective(SphinxDirective):
optional_arguments: int = 1 # The name of the project; can be overridden for each source

# Registered sources
option_spec: OptionSpec = {
source[0].lower(): source[3]
for source in sources # type: ignore # pylint: disable=not-an-iterable
}
option_spec: OptionSpec = { # type: ignore
source[0].lower(): source[3]
for source in sources # pylint: disable=not-an-iterable
}

# Extra options for registered sources
for source in sources: # pylint: disable=not-an-iterable
Expand Down

0 comments on commit 2495a06

Please sign in to comment.