-
Notifications
You must be signed in to change notification settings - Fork 2
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
Polygon uuid as strs #606
Polygon uuid as strs #606
Conversation
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.
Left a question... Is it easy to add a test for this?
@@ -47,7 +47,7 @@ class Contour(BaseModel): | |||
|
|||
|
|||
class Polygon(BaseModel): | |||
uuid: UUID4 | |||
uuid: str # UUID4 |
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.
This with UUID4
should work since we're passing in the str
version of it from polygons.py
, right?
Codecov Report
@@ Coverage Diff @@
## main #606 +/- ##
=======================================
Coverage 84.88% 84.88%
=======================================
Files 163 163
Lines 12815 12815
=======================================
Hits 10878 10878
Misses 1937 1937
📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
whoops