Skip to content

Commit e38abfa

Browse files
committed
Swap keyword arguments in ValidationError
1 parent ce7a6ba commit e38abfa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apitally/client/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,8 +194,8 @@ def add_validation_errors(
194194
method=method.upper(),
195195
path=path,
196196
loc=tuple(str(loc) for loc in error["loc"]),
197-
type=error["type"],
198197
msg=error["msg"],
198+
type=error["type"],
199199
)
200200
self.error_counts[validation_error] += 1
201201
except (KeyError, TypeError): # pragma: no cover

0 commit comments

Comments
 (0)