Skip to content

Commit

Permalink
tests
Browse files Browse the repository at this point in the history
  • Loading branch information
JarbasAl committed Jan 11, 2025
1 parent e9cd75b commit 7ca8814
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ovos_config/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from ovos_config.config import Configuration, LocalConf
from ovos_config.config import Configuration, LocalConf, RemoteConf
from ovos_config.locale import set_default_lf_lang, setup_locale, \
set_default_tz, set_default_lang, get_default_tz, get_default_lang, \
get_config_tz, get_primary_lang_code, load_languages, load_language
Expand Down
4 changes: 2 additions & 2 deletions ovos_config/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
from typing import Optional

from ovos_config.locations import get_xdg_config_locations, ASSISTANT_CONFIG, USER_CONFIG
from ovos_config.models import LocalConf, DefaultConfig, \
DistributionConfig, SystemConfig, AssistantConfig
from ovos_config.models import LocalConf, DefaultConfig, DistributionConfig, SystemConfig, AssistantConfig, \
MycroftDefaultConfig, OvosDistributionConfig, MycroftSystemConfig, MycroftUserConfig, RemoteConf

from ovos_utils.file_utils import FileWatcher
from ovos_utils.json_helper import flattened_delete, merge_dict
Expand Down
1 change: 0 additions & 1 deletion ovos_config/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,6 @@ def __init__(self, cache=WEB_CONFIG_CACHE):
super(RemoteConf, self).__init__(cache)



class MycroftDefaultConfig(DefaultConfig):
def __init__(self):
warnings.warn(
Expand Down

0 comments on commit 7ca8814

Please sign in to comment.