Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
python-poetry
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open
python-poetry
Commits
1c0c9359
Commit
1c0c9359
authored
Jan 22, 2022
by
Daniel Eades
Committed by
Bjorn Neergaard
Jan 22, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
de-glob mypy whitelist for 'console.commands' module
parent
65b220e3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
2 deletions
+26
-2
pyproject.toml
+25
-1
src/poetry/console/io/inputs/run_argv_input.py
+1
-1
No files found.
pyproject.toml
View file @
1c0c9359
...
@@ -112,7 +112,31 @@ files = "src"
...
@@ -112,7 +112,31 @@ files = "src"
[[tool.mypy.overrides]]
[[tool.mypy.overrides]]
module
=
[
module
=
[
'poetry.config.file_config_source'
,
'poetry.config.file_config_source'
,
'poetry.console.*'
,
'poetry.console.application'
,
'poetry.console.logging.formatters.builder_formatter'
,
'poetry.console.commands.add'
,
'poetry.console.commands.build'
,
'poetry.console.commands.cache.clear'
,
'poetry.console.commands.command'
,
'poetry.console.commands.config'
,
'poetry.console.commands.debug.resolve'
,
'poetry.console.commands.end'
,
'poetry.console.commands.env_command'
,
'poetry.console.commands.export'
,
'poetry.console.commands.init'
,
'poetry.console.commands.installer_command'
,
'poetry.console.commands.install'
,
'poetry.console.commands.lock'
,
'poetry.console.commands.new'
,
'poetry.console.commands.plugin.add'
,
'poetry.console.commands.remove'
,
'poetry.console.commands.run'
,
'poetry.console.commands.self.update'
,
'poetry.console.commands.shell'
,
'poetry.console.commands.show'
,
'poetry.console.commands.source.add'
,
'poetry.console.commands.update'
,
'poetry.console.commands.version'
,
'poetry.factory.*'
,
'poetry.factory.*'
,
'poetry.inspection.*'
,
'poetry.inspection.*'
,
'poetry.installation.*'
,
'poetry.installation.*'
,
...
...
src/poetry/console/io/inputs/run_argv_input.py
View file @
1c0c9359
...
@@ -18,7 +18,7 @@ class RunArgvInput(ArgvInput):
...
@@ -18,7 +18,7 @@ class RunArgvInput(ArgvInput):
)
->
None
:
)
->
None
:
super
()
.
__init__
(
argv
,
definition
=
definition
)
super
()
.
__init__
(
argv
,
definition
=
definition
)
self
.
_parameter_options
=
[]
self
.
_parameter_options
:
List
[
str
]
=
[]
@property
@property
def
first_argument
(
self
)
->
Optional
[
str
]:
def
first_argument
(
self
)
->
Optional
[
str
]:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment