Skip to content
This repository was archived by the owner on Aug 15, 2022. It is now read-only.

Commit 33d5580

Browse files
author
Jeff Ammons
committed
Fix linting errors
1 parent 28735ad commit 33d5580

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

docs/example-plugins/canary.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@ def canary():
99
# NOTE: you must add a real channel ID for this to work
1010
outputs.append(["D12345678", "bot started: " + str(time.time())])
1111

12+
1213
canary()

rtmbot/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
from .core import *
1+
from .core import * # noqa: F403, F401

rtmbot/bin/run_rtmbot.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,6 @@ def main(args=None):
3232
except KeyboardInterrupt:
3333
sys.exit(0)
3434

35+
3536
if __name__ == "__main__":
3637
main()

0 commit comments

Comments
 (0)