Fix partially unknown type (#10204)

This commit is contained in:
Brandon Chinn 2022-08-12 02:08:39 -07:00 committed by GitHub
parent abd5df4b3c
commit 4d430ea6ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -169,7 +169,7 @@ class Parser:
type: Optional[ type: Optional[
"Literal['string', 'paths', 'pathlist', 'args', 'linelist', 'bool']" "Literal['string', 'paths', 'pathlist', 'args', 'linelist', 'bool']"
] = None, ] = None,
default=None, default: Any = None,
) -> None: ) -> None:
"""Register an ini-file option. """Register an ini-file option.