generated from geekiot/python-template
Hotfix: fix pyrefly incorrect errors
This commit is contained in:
parent
ede1124d8a
commit
27b423e091
2 changed files with 2 additions and 2 deletions
|
|
@ -108,7 +108,7 @@ class RouterRegistry:
|
||||||
|
|
||||||
if triggers is not None:
|
if triggers is not None:
|
||||||
filters.append(
|
filters.append(
|
||||||
F.data.in_(triggers)
|
F.data.in_(triggers) # pyrefly: ignore
|
||||||
if is_callback
|
if is_callback
|
||||||
else Command(commands=triggers)
|
else Command(commands=triggers)
|
||||||
)
|
)
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ from loguru import logger as loguru_logger
|
||||||
from .logger import configure_logger
|
from .logger import configure_logger
|
||||||
from .settings import Settings
|
from .settings import Settings
|
||||||
|
|
||||||
settings = Settings()
|
settings = Settings() # pyrefly: ignore
|
||||||
|
|
||||||
loguru_logger.debug(
|
loguru_logger.debug(
|
||||||
f"List of settings for program config: {settings}",
|
f"List of settings for program config: {settings}",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue