Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save thepabloaguilar/532d1ab33637d931fef087dfa55ed946 to your computer and use it in GitHub Desktop.
Save thepabloaguilar/532d1ab33637d931fef087dfa55ed946 to your computer and use it in GitHub Desktop.
[Article] Monkey Patching is not too bad - Example class with env variable
import os
class Example:
def __init__(self) -> None:
if os.getenv('RETURNS_TRACE'):
self._tracking = []
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment