Skip to content

Commit

Permalink
ci: Add/remove necessary newlines to fix Python lint
Browse files Browse the repository at this point in the history
  • Loading branch information
iequidoo committed Jan 26, 2024
1 parent 7cf382a commit 987bdaf
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions deltachat-rpc-client/src/deltachat_rpc_client/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Delta Chat JSON-RPC high-level API"""

from ._utils import AttrDict, run_bot_cli, run_client_cli
from .account import Account
from .chat import Chat
Expand Down
1 change: 1 addition & 0 deletions deltachat-rpc-client/src/deltachat_rpc_client/client.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Event loop implementations offering high level event handling/hooking."""

import logging
from typing import (
TYPE_CHECKING,
Expand Down
1 change: 1 addition & 0 deletions deltachat-rpc-client/src/deltachat_rpc_client/events.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""High-level classes for event processing and filtering."""

import re
from abc import ABC, abstractmethod
from typing import TYPE_CHECKING, Callable, Iterable, Iterator, Optional, Set, Tuple, Union
Expand Down
1 change: 0 additions & 1 deletion python/src/deltachat/account.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Account class implementation."""


import os
from array import array
from contextlib import contextmanager
Expand Down

0 comments on commit 987bdaf

Please sign in to comment.