File tree Expand file tree Collapse file tree 4 files changed +4
-2
lines changed Expand file tree Collapse file tree 4 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 77jobs :
88 build-n-publish :
99 name : Build and publish Python 🐍 distributions 📦 to PyPI
10- runs-on : ubuntu-20 .04
10+ runs-on : ubuntu-22 .04
1111 steps :
1212 - uses : actions/checkout@v3
1313 - name : Set up Python
Original file line number Diff line number Diff line change 33import sys
44
55
6- __version__ = "4.4.33dev3 "
6+ __version__ = "4.4.33dev4 "
77
88
99os .environ .update ({"sa_version" : __version__ })
Original file line number Diff line number Diff line change @@ -57,6 +57,7 @@ class TimedBaseModel(BaseModel):
5757class BaseItemEntity (TimedBaseModel ):
5858 id : Optional [int ]
5959 name : Optional [str ]
60+ folder_id : Optional [int ]
6061 path : Optional [str ] = Field (
6162 None , description = "Item’s path in SuperAnnotate project"
6263 )
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ class TestGetEntityMetadataVector(BaseTestCase):
2020 EXPECTED_ITEM_METADATA = {
2121 "name" : "example_image_1.jpg" ,
2222 "path" : "TestGetEntityMetadataVector" ,
23+ "folder_id" : None ,
2324 "url" : None ,
2425 "annotator_email" : None ,
2526 "qa_email" : None ,
You can’t perform that action at this time.
0 commit comments