Mark constant as final

This commit is contained in:
Patrick Lannigan 2023-11-18 07:03:12 -05:00
parent 8fdfc1e949
commit e66388960d
No known key found for this signature in database
GPG Key ID: BBF5D9DED1E4AAF9
1 changed files with 1 additions and 1 deletions

View File

@ -1654,7 +1654,7 @@ class Config:
#: Verbosity type for failed assertions (see :confval:`verbosity_assertions`).
VERBOSITY_ASSERTIONS: Final = "assertions"
_KNOWN_VERBOSITY_TYPES: Final = {VERBOSITY_ASSERTIONS}
_VERBOSITY_INI_DEFAULT = "auto"
_VERBOSITY_INI_DEFAULT: Final = "auto"
def get_verbosity(self, verbosity_type: Optional[str] = None) -> int:
r"""Retrieve the verbosity level for a fine-grained verbosity type.