remove fstring
This commit is contained in:
parent
7e1b096be5
commit
3a78e4f5b8
1 changed files with 1 additions and 7 deletions
|
@ -115,28 +115,22 @@ def identify(cli, passwd, authuser="NickServ"):
|
||||||
def quit(cli, msg):
|
def quit(cli, msg):
|
||||||
cli.send("QUIT %s" % (msg))
|
cli.send("QUIT %s" % (msg))
|
||||||
|
|
||||||
|
|
||||||
def nick(cli, nick):
|
def nick(cli, nick):
|
||||||
cli.send(f"NICK", nick)
|
cli.seld("NICK", nick)
|
||||||
|
|
||||||
|
|
||||||
def user(cli, username, realname):
|
def user(cli, username, realname):
|
||||||
cli.send("USER", username, "0", "*", ":" + realname)
|
cli.send("USER", username, "0", "*", ":" + realname)
|
||||||
|
|
||||||
|
|
||||||
def join(cli, channel):
|
def join(cli, channel):
|
||||||
"""Protocol potentially allows multiple channels or keys."""
|
"""Protocol potentially allows multiple channels or keys."""
|
||||||
cli.send("JOIN", channel)
|
cli.send("JOIN", channel)
|
||||||
|
|
||||||
|
|
||||||
def part(cli, channel):
|
def part(cli, channel):
|
||||||
cli.send("PART", channel)
|
cli.send("PART", channel)
|
||||||
|
|
||||||
|
|
||||||
def notice(cli, target, text):
|
def notice(cli, target, text):
|
||||||
cli.send("NOTICE", target, text)
|
cli.send("NOTICE", target, text)
|
||||||
|
|
||||||
|
|
||||||
def invite(cli, nick, channel):
|
def invite(cli, nick, channel):
|
||||||
cli.send("INVITE", nick, channel)
|
cli.send("INVITE", nick, channel)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue