Skip to content

Commit

Permalink
Update __init__.py
Browse files Browse the repository at this point in the history
Since we use __all__ dunder change to import * in __init__.py
  • Loading branch information
chillymosh committed Apr 27, 2024
1 parent 6a09c99 commit 2411d1e
Showing 1 changed file with 13 additions and 22 deletions.
35 changes: 13 additions & 22 deletions twitchio/models/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,25 +22,16 @@
SOFTWARE.
"""

from .ads import AdSchedule as AdSchedule, CommercialStart as CommercialStart, SnoozeAd as SnoozeAd
from .bits import (
BitsLeaderboard as BitsLeaderboard,
CheerEmote as CheerEmote,
ExtensionTransaction as ExtensionTransaction,
)
from .ccls import ContentClassificationLabel as ContentClassificationLabel
from .channel_points import CustomReward as CustomReward, CustomRewardRedemption as CustomRewardRedemption
from .channels import (
ChannelEditor as ChannelEditor,
ChannelFollowedEvent as ChannelFollowedEvent,
ChannelFollowerEvent as ChannelFollowerEvent,
ChannelInfo as ChannelInfo,
)
from .charity import CharityCampaign as CharityCampaign, CharityDonation as CharityDonation
from .chat import ChatBadge as ChatBadge, ChatterColor as ChatterColor, GlobalEmote as GlobalEmote
from .clips import Clip as Clip
from .games import Game as Game
from .search import SearchChannel as SearchChannel
from .streams import Stream as Stream
from .teams import Team as Team
from .videos import Video as Video
from .ads import *
from .bits import *
from .ccls import *
from .channel_points import *
from .channels import *
from .charity import *
from .chat import *
from .clips import *
from .games import *
from .search import *
from .streams import *
from .teams import *
from .videos import *

0 comments on commit 2411d1e

Please sign in to comment.