Skip to content

Commit

Permalink
Merge branch 'models-cer' into models-cke
Browse files Browse the repository at this point in the history
  • Loading branch information
Konstantin committed Oct 1, 2024
2 parents d016591 + 4c1ed7e commit 129b50d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ dynamic = ["readme", "version"]
[project.optional-dependencies]
coverage = ["coverage==7.6.1"]
docs = ["sphinx==8.0.2", "sphinx-rtd-theme==2.0.0"]
formatting = ["black==24.8.0", "isort==5.13.2"]
formatting = ["black[jupyter]==24.8.0", "isort==5.13.2"]
json_schemas = ["marshmallow-jsonschema==0.13.0", "setuptools==75.1.0"]
linting = ["pylint==3.3.1"]
spellcheck = ["codespell==2.3.0"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,10 +104,10 @@ async def format_constraint_evaluation(
all_evaluatable_format_constraint_keys: List[str] = [
t.value for t in parsed_tree_fc.scan_values(lambda v: isinstance(v, Token))
]
input_values: Dict[
str, EvaluatedFormatConstraint
] = await _build_evaluated_format_constraint_nodes( # pylint:disable=no-value-for-parameter
all_evaluatable_format_constraint_keys
input_values: Dict[str, EvaluatedFormatConstraint] = (
await _build_evaluated_format_constraint_nodes( # pylint:disable=no-value-for-parameter
all_evaluatable_format_constraint_keys
)
)
resulting_evaluated_format_constraint_node: EvaluatedFormatConstraint = evaluate_format_constraint_tree(
parsed_tree_fc, input_values
Expand Down

0 comments on commit 129b50d

Please sign in to comment.