Python Black Format

This commit is contained in:
Zander M. 2024-03-11 13:24:54 -04:00
parent 6817cd8e07
commit bb12e33584
No known key found for this signature in database
GPG Key ID: 43C16AB7AD15CF44
4 changed files with 4 additions and 0 deletions

View File

@ -7,6 +7,7 @@ Copyright (c) 2023, cloudwithax
Licensed under GPL-3.0 Licensed under GPL-3.0
""" """
import discord import discord
if not discord.version_info.major >= 2: if not discord.version_info.major >= 2:

View File

@ -1,4 +1,5 @@
"""Apple Music module for Pomice, made possible by cloudwithax 2023""" """Apple Music module for Pomice, made possible by cloudwithax 2023"""
from .client import * from .client import *
from .exceptions import * from .exceptions import *
from .objects import * from .objects import *

View File

@ -1,4 +1,5 @@
"""Module for managing Apple Music objects""" """Module for managing Apple Music objects"""
from typing import List from typing import List
__all__ = ( __all__ = (

View File

@ -1,4 +1,5 @@
"""Spotify module for Pomice, made possible by cloudwithax 2023""" """Spotify module for Pomice, made possible by cloudwithax 2023"""
from .client import Client from .client import Client
from .exceptions import * from .exceptions import *
from .objects import * from .objects import *