Skip to content

Commit

Permalink
Change the context to use keyword-only arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
zeroSteiner committed Jul 8, 2023
1 parent 34356c9 commit eab9e3c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/source/change_log.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Version 4.0.0

* **Breaking:** Changed ``STRING.to_ary`` to return an array of characters instead of splitting the string
* Use the new builtin ``$split`` function to split a string on whitespace into an array of words
* **Breaking:** Changed :py:class:`~rule_engine.engine.Context` to use keyword-only arguments

Version 3.x.x
-------------
Expand Down
1 change: 1 addition & 0 deletions lib/rule_engine/engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -403,6 +403,7 @@ class Context(object):
"""
def __init__(
self,
*,
regex_flags=0,
resolver=None,
type_resolver=None,
Expand Down

0 comments on commit eab9e3c

Please sign in to comment.