Skip to content

Commit 8242c4c

Browse files
committed
Fix private attribute name
1 parent 781b700 commit 8242c4c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dvuploader/file.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ class File(BaseModel):
5858
tab_ingest: bool = Field(default=True, alias="tabIngest")
5959

6060
_size: int = PrivateAttr(default=0)
61-
_size_unchanged_data: bool = PrivateAttr(default=False)
61+
_unchanged_data: bool = PrivateAttr(default=False)
6262

6363
def extract_file_name(self):
6464
"""

0 commit comments

Comments
 (0)