Skip to content

Instantly share code, notes, and snippets.

@melvinkcx
Last active June 30, 2019 04:01
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 melvinkcx/fd8d58ed0aa3891ee8a171bf2a89d881 to your computer and use it in GitHub Desktop.
Save melvinkcx/fd8d58ed0aa3891ee8a171bf2a89d881 to your computer and use it in GitHub Desktop.
Snippet for "Why Refactoring? How to Refactor/Restructure Python Package?" https://hackernoon.com/why-refactoring-how-to-restructure-python-package-51b89aa91987
"""
in abstracts.py
"""
from abc import ABCMeta
class AbstractBaseConfigHelper:
__metaclass__ = ABCMeta
def get(self, config_name):
pass
def set(self, config_name, value):
pass
def _get_settings_helper(self):
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment