-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor everything to be less stupid
- Loading branch information
1 parent
e9fb0d9
commit 7110af6
Showing
12 changed files
with
682 additions
and
810 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,3 +10,4 @@ venv/ | |
docs/build | ||
dist/ | ||
.vscode/ | ||
/*.py |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
from sechat.server import Server | ||
from sechat.bot import Bot | ||
from sechat.credentials import Credentials | ||
from sechat.room import Room | ||
from sechat.version import __version__ | ||
from sechat.events import Event, EventType, MentionEvent, MessageEvent, UnknownEvent, EditEvent, ReplyEvent, DeleteEvent | ||
from sechat.servers import Server | ||
|
||
__all__ = ["Server", "Bot", "Room", "Event", "EventType", "MentionEvent", "MessageEvent", "UnknownEvent", "EditEvent", "ReplyEvent", "DeleteEvent"] | ||
__version__ = "2.0.0" | ||
__all__ = ["Credentials", "Room", "Server"] |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.