Skip to content

Commit

Permalink
fix linter warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
adbenitez committed Mar 29, 2024
1 parent bafd437 commit 7aa1b98
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
4 changes: 1 addition & 3 deletions deltabot_cli/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
"""Library to help with Delta Chat bot development"""

# pylama:ignore=W0611,W0401
from deltachat2 import *

# pylama:ignore=W0611
from .cli import BotCli
4 changes: 2 additions & 2 deletions examples/echobot.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#!/usr/bin/env python3
"""Minimal echo-bot example."""

from deltachat2 import MsgData
from deltachat2 import MsgData, events

from deltabot_cli import BotCli, events
from deltabot_cli import BotCli

cli = BotCli("echobot")

Expand Down
4 changes: 2 additions & 2 deletions examples/echobot_advanced.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/usr/bin/env python3
"""Advanced echo bot example."""
from deltachat2 import MsgData
from deltachat2 import EventType, MsgData, events

from deltabot_cli import BotCli, EventType, events
from deltabot_cli import BotCli

cli = BotCli("echobot")

Expand Down

0 comments on commit 7aa1b98

Please sign in to comment.