Skip to content

Instantly share code, notes, and snippets.

@PlugaruT
Created September 12, 2018 07:57
Show Gist options
  • Save PlugaruT/188b3e11c169b17cc65a10b0831fecb4 to your computer and use it in GitHub Desktop.
Save PlugaruT/188b3e11c169b17cc65a10b0831fecb4 to your computer and use it in GitHub Desktop.
from abc import ABCMeta, abstractmethod
class AFoo(metaclass=ABCMeta):
@abstractmethod
def my_abstract_method(self):
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment