-
Notifications
You must be signed in to change notification settings - Fork 3
Conversation
Signed-off-by: Janine Olear <[email protected]>
Signed-off-by: Janine Olear <[email protected]>
Codecov ReportPatch coverage:
Additional details and impacted files@@ Coverage Diff @@
## main #688 +/- ##
==========================================
+ Coverage 92.04% 92.10% +0.05%
==========================================
Files 9 9
Lines 528 557 +29
Branches 116 126 +10
==========================================
+ Hits 486 513 +27
- Misses 22 23 +1
- Partials 20 21 +1
☔ View full report in Codecov by Sentry. |
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.
Just one minor linting issue.
class TransformerV2ListRegionByVersion(Transformer): | ||
"""Generate a list for all available regions for one version.""" | ||
|
||
def run(self, data): |
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.
Add # noqa: C901
here to silence the complexity linter. It would be good to revisit how we could make this less complex later. 😉
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.
Ah right, I added it :)
c24d58f
to
cb6a694
Compare
Signed-off-by: Janine Olear <[email protected]>
cb6a694
to
5e9d3f1
Compare
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.
Thanks for catching the no_type_check
in there. This looks okay now but we will need to work on this complexity later. 😉
Yes, alright - I created an issue, so we don't forget about it :) #689 |
closes #593