Skip to content

Commit

Permalink
fix:bracket_expansion
Browse files Browse the repository at this point in the history
pull OpenVoiceOS/ovos-utils#317 into dependencies
  • Loading branch information
JarbasAl committed Dec 6, 2024
1 parent e87af00 commit 7794b74
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ovos_core/intent_services/stop_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from ovos_config.config import Configuration
from ovos_plugin_manager.templates.pipeline import PipelineMatch, PipelinePlugin
from ovos_utils import flatten_list
from ovos_utils.bracket_expansion import expand_options
from ovos_utils.bracket_expansion import expand_template
from ovos_utils.lang import standardize_lang_tag
from ovos_utils.log import LOG
from ovos_utils.parse import match_one
Expand All @@ -33,7 +33,7 @@ def load_resource_files(self):
self._voc_cache[lang2] = {}
for f in os.listdir(f"{base}/{lang}"):
with open(f"{base}/{lang}/{f}", encoding="utf-8") as fi:
lines = [expand_options(l) for l in fi.read().split("\n")
lines = [expand_template(l) for l in fi.read().split("\n")
if l.strip() and not l.startswith("#")]
n = f.split(".", 1)[0]
self._voc_cache[lang2][n] = flatten_list(lines)
Expand Down
2 changes: 1 addition & 1 deletion requirements/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ ovos-adapt-parser>=1.0.5, <2.0.0
ovos_ocp_pipeline_plugin>=1.0.7, <2.0.0
ovos-common-query-pipeline-plugin>=1.0.5, <2.0.0

ovos-utils>=0.3.5,<1.0.0
ovos-utils[extras]>=0.6.0a1,<1.0.0
ovos_bus_client>=0.1.4,<2.0.0
ovos-plugin-manager>=0.5.6,<1.0.0
ovos-config>=0.0.13,<2.0.0
Expand Down

0 comments on commit 7794b74

Please sign in to comment.