Skip to content

Instantly share code, notes, and snippets.

@stephengruppetta
Created May 7, 2023 09:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stephengruppetta/ec697c01254ddfdd4c078dae815d0c4b to your computer and use it in GitHub Desktop.
Save stephengruppetta/ec697c01254ddfdd4c078dae815d0c4b to your computer and use it in GitHub Desktop.
import functools
class Article:
def set_platform(self, platform):
self.platform = platform
# Using partialmethod...
set_substack = functools.partialmethod(
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