Last active
April 9, 2019 20:43
-
-
Save Sean-Bradley/0c4d8c8f417fa7a4585ebc3b44115726 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class IFurnitureFactory(metaclass=ABCMeta): # pylint: disable=too-few-public-methods | |
"""Furniture Factory Interface""" | |
@abstractstaticmethod | |
def get_furniture(furniture): | |
"""The static funiture factory inteface method""" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment