This website works better with JavaScript.
Home
Explore
Help
Sign In
forestbelton
/
paircd
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
Add missing type signature
master
Forest Belton
3 years ago
parent
2e598c442c
commit
757389aee0
2 changed files
with
1 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+0
-1
paircd/handler/privmsg.py
+1
-2
paircd/main.py
+ 0
- 1
paircd/handler/privmsg.py
View File
@ -4,7 +4,6 @@ from paircd.message import Message
from
paircd.reply
import
(
ERR_NOSUCHNICK
,
ERR_NOTEXTTOSEND
,
ERR_NOTREGISTERED
,
PRIVMSG
,
RPL_AWAY
,
)
+ 1
- 2
paircd/main.py
View File
@ -50,10 +50,9 @@ async def serve() -> None:
await
server
.
serve_forever
(
)
def
main
(
)
:
def
main
(
)
-
>
None
:
asyncio
.
run
(
serve
(
)
)
if
__name__
==
"
__main__
"
:
main
(
)
Write
Preview
Loading…
Cancel
Save