Skip to content

Instantly share code, notes, and snippets.

@stephengruppetta
Created May 7, 2023 09:50
Show Gist options
  • Save stephengruppetta/fe5ca52090f0790539aa09784351ebae to your computer and use it in GitHub Desktop.
Save stephengruppetta/fe5ca52090f0790539aa09784351ebae to your computer and use it in GitHub Desktop.
import functools
class Article:
def set_platform(self, platform):
self.platform = platform
# This won't work! We'll fix it soon
set_substack = functools.partial(
set_platform,
'substack',
)
article = Article()
article.set_substack()
print(article.platform)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment