Skip to content

Commit

Permalink
leftovers fixes after PR merges
Browse files Browse the repository at this point in the history
  • Loading branch information
rdavydov committed Oct 6, 2024
1 parent c61f8b6 commit 910bea9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 deletions.
16 changes: 7 additions & 9 deletions TwitchChannelPointsMiner/classes/Twitch.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,16 @@
import re
import string
import time
from pathlib import Path
from secrets import choice, token_hex

# import json
import requests
import validators
# import json

from pathlib import Path
from secrets import choice, token_hex
from typing import Dict, Any
# from urllib.parse import quote
# from base64 import urlsafe_b64decode
# from datetime import datetime

from TwitchChannelPointsMiner.classes.entities.Campaign import Campaign
from TwitchChannelPointsMiner.classes.entities.CommunityGoal import CommunityGoal
Expand Down Expand Up @@ -45,11 +48,6 @@
internet_connection_available,
)

# from urllib.parse import quote
# from base64 import urlsafe_b64decode
# from datetime import datetime


logger = logging.getLogger(__name__)
JsonType = Dict[str, Any]

Expand Down
2 changes: 1 addition & 1 deletion TwitchChannelPointsMiner/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
IRC = "irc.chat.twitch.tv"
IRC_PORT = 6667
WEBSOCKET = "wss://pubsub-edge.twitch.tv/v1"
CLIENT_ID = "ue6666qo983tsx6so1t0vnawi233wa" # TV
CLIENT_ID = "ue6666qo983tsx6so1t0vnawi233wa" # TV
# CLIENT_ID = "kimne78kx3ncx6brgo4mv6wki5h1ko" # Browser
# CLIENT_ID = "r8s4dac0uhzifbpu9sjdiwzctle17ff" # Mobile Browser
# CLIENT_ID = "kd1unb4b3q4t58fwlpcbzcbnm76a8fp" # Android App
Expand Down

0 comments on commit 910bea9

Please sign in to comment.