Skip to content

Commit

Permalink
Merge branch 'master' into switchable
Browse files Browse the repository at this point in the history
  • Loading branch information
rdavydov authored Oct 24, 2022
2 parents 75af772 + a411ed3 commit 2a28626
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -644,4 +644,4 @@ Now when we did everything we can run miner: `python run.py`
Read more at [#92](https://github.com/Tkd-Alex/Twitch-Channel-Points-Miner-v2/issues/92) [#76](https://github.com/Tkd-Alex/Twitch-Channel-Points-Miner-v2/issues/76)

## Disclaimer
This project comes with no guarantee or warranty. You are responsible for whatever happens from using this project. It is possible to get soft or hard banned by using this project if you are not careful. This is a personal project and is in no way affiliated with Twitch.
This project comes with no guarantee or warranty. You are responsible for whatever happens from using this project. It is possible to get soft or hard banned by using this project if you are not careful. This is a personal project and is in no way affiliated with Twitch.
2 changes: 1 addition & 1 deletion TwitchChannelPointsMiner/TwitchChannelPointsMiner.py
Original file line number Diff line number Diff line change
Expand Up @@ -426,4 +426,4 @@ def __print_report(self):
logger.info(
f"{self.streamers[streamer_index].print_history()}",
extra={"emoji": ":moneybag:"},
)
)
2 changes: 1 addition & 1 deletion TwitchChannelPointsMiner/classes/Settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,4 @@ def __str__(self):

@classmethod
def get(cls, key):
return getattr(cls, str(key)) if str(key) in dir(cls) else None
return getattr(cls, str(key)) if str(key) in dir(cls) else None
2 changes: 1 addition & 1 deletion TwitchChannelPointsMiner/classes/WebSocketsPool.py
Original file line number Diff line number Diff line change
Expand Up @@ -385,4 +385,4 @@ def on_message(ws, message):
WebSocketsPool.handle_reconnection(ws)

elif response["type"] == "PONG":
ws.last_pong = time.time()
ws.last_pong = time.time()
2 changes: 1 addition & 1 deletion example.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,4 +95,4 @@
], # Array of streamers (order = priority)
followers=False, # Automatic download the list of your followers
followers_order=FollowersOrder.ASC # Sort the followers list by follow date. ASC or DESC
)
)

0 comments on commit 2a28626

Please sign in to comment.