Conversation
Codecov Report
@@ Coverage Diff @@
## master #1734 +/- ##
==========================================
- Coverage 77.06% 71.45% -5.61%
==========================================
Files 56 56
Lines 8226 8226
==========================================
- Hits 6339 5878 -461
- Misses 1887 2348 +461
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
|
This is great @shawnzhu !! |
|
@shawnzhu can you revisit this? |
tests are failing for mongoDB, I may be related with: @shawnzhu can you replace that super call by: To see if it fixes the issue? Thank you! |
|
@shawnzhu @dpgaspar Seems like there was an issue... However, no idea where this unexpected keyword argument is coming from. Could it possibly be related to this branch being out-of-date with base branch? |
|
|
||
| return super(MongoFileField, self).process(formdata, data) | ||
| # return super(MongoFileField, self).process(formdata, data) | ||
| return super().process(formdata, data) |
There was a problem hiding this comment.
@shawnzhu could you please include the return super().process(formdata, data, **kwargs) to check if it solve the issue? Thank you
|
Closing, implemented on #1904 |
Description
This is a follow up of #1733
Stop using deprecated APIs from WTForms v2.
ADDITIONAL INFORMATION