Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
Snippet for "Why Refactoring? How to Refactor/Restructure Python Package?" https://hackernoon.com/why-refactoring-how-to-restructure-python-package-51b89aa91987
"""
Package: utils.config.constants
after removing duplicates
"""
class ConfigHelper:
def get(self, config_name, default=None):
pass
def set(self, config_name, value):
pass
def _get_settings_helper(self):
pass
def get_logging_level():
pass
def is_logging_enabled():
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment