Skip to content
Snippets Groups Projects
Verified Commit 7ed07fb6 authored by Newbyte's avatar Newbyte :snowflake:
Browse files

pmb.helpers.logging: Annotate types for loglevels (MR 2431)

Otherwise mypy cannot figure out the type of these.
parent 3bb9953f
No related branches found
No related tags found
1 merge request!2431CI: Run mypy with --check-untyped-defs
This commit is part of merge request !2431. Comments created here will be created in the context of that merge request.
......@@ -4,21 +4,21 @@ import logging
import os
from pathlib import Path
import sys
from typing import TextIO
from typing import Final, TextIO
import pmb.config
from pmb.meta import Cache
logfd: TextIO
CRITICAL = logging.CRITICAL
FATAL = logging.FATAL
ERROR = logging.ERROR
WARNING = logging.WARNING
WARN = logging.WARN
INFO = logging.INFO
DEBUG = logging.DEBUG
NOTSET = logging.NOTSET
VERBOSE = 5
CRITICAL: Final[int] = logging.CRITICAL
FATAL: Final[int] = logging.FATAL
ERROR: Final[int] = logging.ERROR
WARNING: Final[int] = logging.WARNING
WARN: Final[int] = logging.WARN
INFO: Final[int] = logging.INFO
DEBUG: Final[int] = logging.DEBUG
NOTSET: Final[int] = logging.NOTSET
VERBOSE: Final[int] = 5
class log_handler(logging.StreamHandler):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment