ci: Add/remove necessary newlines to fix Python lint

This commit is contained in:
iequidoo
2024-01-26 13:08:40 -03:00
committed by iequidoo
parent 7cf382a3b8
commit 987bdaf237
4 changed files with 3 additions and 1 deletions

View File

@@ -1,4 +1,5 @@
"""Delta Chat JSON-RPC high-level API""" """Delta Chat JSON-RPC high-level API"""
from ._utils import AttrDict, run_bot_cli, run_client_cli from ._utils import AttrDict, run_bot_cli, run_client_cli
from .account import Account from .account import Account
from .chat import Chat from .chat import Chat

View File

@@ -1,4 +1,5 @@
"""Event loop implementations offering high level event handling/hooking.""" """Event loop implementations offering high level event handling/hooking."""
import logging import logging
from typing import ( from typing import (
TYPE_CHECKING, TYPE_CHECKING,

View File

@@ -1,4 +1,5 @@
"""High-level classes for event processing and filtering.""" """High-level classes for event processing and filtering."""
import re import re
from abc import ABC, abstractmethod from abc import ABC, abstractmethod
from typing import TYPE_CHECKING, Callable, Iterable, Iterator, Optional, Set, Tuple, Union from typing import TYPE_CHECKING, Callable, Iterable, Iterator, Optional, Set, Tuple, Union

View File

@@ -1,6 +1,5 @@
"""Account class implementation.""" """Account class implementation."""
import os import os
from array import array from array import array
from contextlib import contextmanager from contextlib import contextmanager