Skip to content

Instantly share code, notes, and snippets.

@xb4dc0d3
Created March 19, 2020 07:57
Show Gist options
  • Save xb4dc0d3/061452a4c952ddd7f917f7bcc5cff1c3 to your computer and use it in GitHub Desktop.
Save xb4dc0d3/061452a4c952ddd7f917f7bcc5cff1c3 to your computer and use it in GitHub Desktop.
# Bad
class Invitation:
def handle(self) -> None:
# Do something...
message = Invitation()
# handle untuk apa?
message.handle()
# Good
class Invitation:
def send(self) -> None:
'''
Kirim invitation
'''
message = Invitation()
message.send()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment