"""Register services. If there are overrides, load those first.""" from grass import config if config.environment == 'dev': try: from service_overrides import overrides except ImportError: pass from grass import services # noqa