Skip to content

Instantly share code, notes, and snippets.

@jasongorman
Created April 10, 2021 08:29
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 jasongorman/e58e99cb023c0387cee727931b0e71e0 to your computer and use it in GitHub Desktop.
Save jasongorman/e58e99cb023c0387cee727931b0e71e0 to your computer and use it in GitHub Desktop.
from abc import ABC, abstractmethod
class Payments(ABC):
@abstractmethod
def pay(self, credit_card, amount):
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment