We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 896a182 commit 7247e3bCopy full SHA for 7247e3b
noxfile.py
@@ -15,7 +15,7 @@ class CLIArgs(
15
ruff: bool = False
16
17
@classmethod
18
- def parse(cls, posargs: list[str]) -> "CLIArgs":
+ def parse(cls, posargs: list[str]) -> CLIArgs:
19
"""Parse command line arguments from the provided list.
20
21
Args:
tools/logger/logger.py
@@ -1,10 +1,12 @@
1
import logging
2
import sys
3
-
4
-from google.auth.credentials import Credentials
+from typing import TYPE_CHECKING
5
6
from tools.logger.type import LogType
7
+if TYPE_CHECKING:
8
+ from google.auth.credentials import Credentials
9
+
10
11
class Logger(logging.Logger):
12
"""Logger.
0 commit comments