Skip to content

Commit

Permalink
style: cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronhnsy committed Jul 18, 2022
1 parent 186488c commit 0429341
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion launcher.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Swish. A standalone audio player and server for bots on Discord.
Copyright (C) 2022 PythonistaGuild <https://github.com/PythonistaGuild>
Copyright (C) 2022 PythonistaGuild <https://github.com/PythonistaGuild>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
Expand Down
4 changes: 2 additions & 2 deletions swish/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Swish. A standalone audio player and server for bots on Discord.
Copyright (C) 2022 PythonistaGuild <https://github.com/PythonistaGuild>
Copyright (C) 2022 PythonistaGuild <https://github.com/PythonistaGuild>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
Expand All @@ -14,4 +14,4 @@
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
"""
"""
2 changes: 1 addition & 1 deletion swish/app.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Swish. A standalone audio player and server for bots on Discord.
Copyright (C) 2022 PythonistaGuild <https://github.com/PythonistaGuild>
Copyright (C) 2022 PythonistaGuild <https://github.com/PythonistaGuild>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion swish/config.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Swish. A standalone audio player and server for bots on Discord.
Copyright (C) 2022 PythonistaGuild <https://github.com/PythonistaGuild>
Copyright (C) 2022 PythonistaGuild <https://github.com/PythonistaGuild>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion swish/logging.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Swish. A standalone audio player and server for bots on Discord.
Copyright (C) 2022 PythonistaGuild <https://github.com/PythonistaGuild>
Copyright (C) 2022 PythonistaGuild <https://github.com/PythonistaGuild>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
Expand Down
4 changes: 2 additions & 2 deletions swish/player.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Swish. A standalone audio player and server for bots on Discord.
Copyright (C) 2022 PythonistaGuild <https://github.com/PythonistaGuild>
Copyright (C) 2022 PythonistaGuild <https://github.com/PythonistaGuild>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
Expand Down Expand Up @@ -88,7 +88,7 @@ async def handle_payload(self, payload: dict[str, Any]) -> None:
await handler(payload['d'])

async def send_payload(self, op: str, data: dict[str, Any]) -> None:
await self._websocket.send_json({"op": op, "d": data})
await self._websocket.send_json({'op': op, "d": data})

# internal connection handlers

Expand Down
2 changes: 1 addition & 1 deletion swish/rotator.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Swish. A standalone audio player and server for bots on Discord.
Copyright (C) 2022 PythonistaGuild <https://github.com/PythonistaGuild>
Copyright (C) 2022 PythonistaGuild <https://github.com/PythonistaGuild>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
Expand Down

0 comments on commit 0429341

Please sign in to comment.