Skip to content

Commit aaf9c29

Browse files
authored
Fix a typo in the name of the class (#496)
1 parent 1633f31 commit aaf9c29

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

newdle/core/webargs.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ def _strip_whitespace(value):
1414
return value
1515

1616

17-
class WhitspaceStrippingFlaskParser(flaskparser.FlaskParser):
17+
class WhitespaceStrippingFlaskParser(flaskparser.FlaskParser):
1818
def pre_load(self, location_data, *, schema, req, location):
1919
if location in ('query', 'form', 'json'):
2020
return _strip_whitespace(location_data)
2121
return location_data
2222

2323

24-
parser = WhitspaceStrippingFlaskParser(unknown=EXCLUDE)
24+
parser = WhitespaceStrippingFlaskParser(unknown=EXCLUDE)
2525

2626

2727
@parser.error_handler

0 commit comments

Comments
 (0)