Skip to content

Commit

Permalink
fixing combined converter match
Browse files Browse the repository at this point in the history
  • Loading branch information
EdwardCuiPeacock committed Jan 29, 2022
1 parent cc2213b commit 4c77cdd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dynaconf/utils/parse_conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ def _parse_conf_data(data, tomlfy=False, box_settings=None):
):
# Check combination token is used
comb_token = re.match(
r"@(str|int|float|bool|json) @(jinja|format)", data
r"^@(str|int|float|bool|json) @(jinja|format)", data
)
if comb_token:
tokens = comb_token.group(0)
Expand Down

0 comments on commit 4c77cdd

Please sign in to comment.