Skip to content

Commit fc82e5e

Browse files
authored
Merge pull request #112 from maxmind/greg/fix-action
Fix 3.10 action
2 parents 0ff47d2 + f87efd7 commit fc82e5e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

minfraud/request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def maybe_hash_email(transaction):
9797
if at_idx == -1:
9898
return
9999

100-
domain = _clean_domain(address[at_idx + 1 :]) # noqa
100+
domain = _clean_domain(address[at_idx + 1 :]) # noqa
101101
local_part = address[:at_idx]
102102

103103
if domain != "" and "domain" not in email:

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ python =
1616
3.7: py37
1717
3.8: py38
1818
3.9: py39
19-
"3.10": py310,black,lint,flake8,mypy
19+
3.10: py310,black,lint,flake8,mypy
2020

2121
[testenv:{py37,py38,py39,py310}-test]
2222
deps =

0 commit comments

Comments
 (0)