Don't ignore the whole file by flake8

pull/428/head
Ivan Habunek 2023-12-14 11:57:33 +01:00
rodzic f72e4ba844
commit 44ea2e8e6f
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: F5F0623FF5EBCB3D
1 zmienionych plików z 10 dodań i 10 usunięć

Wyświetl plik

@ -1,4 +1,3 @@
# flake8: noqa
import click
import logging
import os
@ -130,12 +129,13 @@ def cli(ctx: click.Context, max_width: int, color: bool, debug: bool, quiet: boo
if debug:
logging.basicConfig(level=logging.DEBUG)
from toot.cli import accounts
from toot.cli import auth
from toot.cli import lists
from toot.cli import post
from toot.cli import read
from toot.cli import statuses
from toot.cli import tags
from toot.cli import timelines
from toot.cli import tui
from toot.cli import accounts # noqa
from toot.cli import auth # noqa
from toot.cli import lists # noqa
from toot.cli import post # noqa
from toot.cli import read # noqa
from toot.cli import statuses # noqa
from toot.cli import tags # noqa
from toot.cli import timelines # noqa
from toot.cli import tui # noqa