Created
February 7, 2018 10:46
-
-
Save ConorMcGee/ffbb7e724878b5240bc7e14b4ab76763 to your computer and use it in GitHub Desktop.
This file contains 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
from some_library import OriginalClass | |
class CustomClass(OriginalClass): | |
def original_method(*args, **kwargs): | |
# do stuff the way I want to do it instead of the way the library does it |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment