This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "client_name": "AT Toolbox for Android", | |
| "client_uri": "attoolbox.totallynotseth.dev", | |
| "redirect_uris": [ | |
| "dev.totallynotseth.attoolbox://callback" | |
| ], | |
| "token_endpoint_auth_method": "none", | |
| "contacts": [ | |
| "[email protected]" | |
| ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import keyboard | |
| class Accumulator: | |
| def __init__(self, initial_value=0): | |
| self.accumulator = initial_value | |
| def increment(self, number=1): | |
| self.accumulator += number | |
| return self.accumulator |