Skip to content

Commit

Permalink
fix trailing comma (#86)
Browse files Browse the repository at this point in the history
  • Loading branch information
jancervenka authored Nov 6, 2024
1 parent db70d4e commit 356723e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool]
[tool.poetry]
name = "ep-stats"
version = "2.5.1"
version = "2.5.2"
homepage = "https://github.com/avast/ep-stats"
description = "Statistical package to evaluate ab tests in experimentation platform."
authors = [
Expand Down
2 changes: 1 addition & 1 deletion src/epstats/toolkit/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def __init__(self, nominator: str, denominator: str):
dimension_value_chars = alphanums + "_" + "-" + "." + "%" + " " + "/" + "|"
dimension_operator = oneOf("< = > <= >= =^ !=")
dimension_value = (dimension_operator + Word(dimension_value_chars)).setParseAction(DimensionValue)
dimension_list = delimitedList(dimension + dimension_value)
dimension_list = delimitedList(dimension + dimension_value, allow_trailing_delim=True)

ep_goal = (func + "(" + unit_type + "." + agg_type + "." + goal + ")").setParseAction(EpGoal)
ep_goal_with_dimensions = (
Expand Down

0 comments on commit 356723e

Please sign in to comment.