Skip to content

Commit

Permalink
fixup! Fix handling of empty help with addini
Browse files Browse the repository at this point in the history
  • Loading branch information
blueyed committed Nov 2, 2020
1 parent 8632435 commit 42fc37c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/_pytest/config/argparsing.py
Expand Up @@ -44,7 +44,7 @@ def __init__(
self._groups = [] # type: List[OptionGroup]
self._processopt = processopt
self._usage = usage
self._inidict = {} # type: Dict[str, Tuple[str, Optional[str], Any]]
self._inidict = {} # type: Dict[Optional[str], Tuple[str, Optional[str], Any]]
self._ininames = [] # type: List[str]
self.extra_info = {} # type: Dict[str, Any]

Expand Down

0 comments on commit 42fc37c

Please sign in to comment.