-
Notifications
You must be signed in to change notification settings - Fork 9
MyECLPay export csv #927
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MyECLPay export csv #927
Conversation
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## main #927 +/- ##
==========================================
+ Coverage 84.86% 84.92% +0.06%
==========================================
Files 193 194 +1
Lines 13888 13966 +78
==========================================
+ Hits 11786 11861 +75
- Misses 2102 2105 +3 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
d30aace to
37f9ae5
Compare
37f9ae5 to
321de9c
Compare
| transactions_with_sellers = [] | ||
| for row in result.all(): | ||
| transaction = row[0] | ||
| user = row[1] | ||
|
|
||
| transactions_with_sellers.append((transaction, user.full_name)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can unpack (do destructuring) in Python on sequences too:
transaction, user, _ = row
Description
Summary
...
Issues/PR dependencies
Issues to be resolved
Required PRs
Changes Made
Additional Notes
Classification
Type of Change
Impact & Scope
Testing
Documentation
"Docstrings#Inline comments