Skip to content

Commit 4886bdb

Browse files
committed
Fix quality checks
1 parent e0f3490 commit 4886bdb

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

packages/griffelib/src/griffe/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -601,10 +601,10 @@
601601
"main",
602602
]
603603

604-
__all__ += __cli_all__
604+
__all__ += __cli_all__ # noqa: PLE0605
605605

606-
try:
607-
from griffecli import DEFAULT_LOG_LEVEL, check, dump, get_parser, main
606+
try: # noqa: SIM105
607+
from griffecli import DEFAULT_LOG_LEVEL, check, dump, get_parser, main # noqa: F401
608608
except ImportError:
609609
pass
610610

0 commit comments

Comments
 (0)