Skip to content

Instantly share code, notes, and snippets.

@okanyenigun
Created March 13, 2022 18:14
Show Gist options
  • Save okanyenigun/595848848be931f446d35910fb0dbbf6 to your computer and use it in GitHub Desktop.
Save okanyenigun/595848848be931f446d35910fb0dbbf6 to your computer and use it in GitHub Desktop.
coincidental_cohesion
from abc import ABC, abstractmethod
class Utility(ABC):
@abstractmethod
def check_currency(self):
pass
@abstractmethod
def parse_user_entry(self):
pass
@abstractmethod
def convert_list_to_string(self):
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment