Skip to content

Commit 22a33d9

Browse files
tpellissierclaude
andcommitted
Rename _ODataFileUpload to _FileUploadMixin for consistency
Aligns with _RelationshipOperationsMixin naming convention. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent d65ebbd commit 22a33d9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/PowerPlatform/Dataverse/data/_odata.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from contextvars import ContextVar
2020

2121
from ..core._http import _HttpClient
22-
from ._upload import _ODataFileUpload
22+
from ._upload import _FileUploadMixin
2323
from ._relationships import _RelationshipOperationsMixin
2424
from ..core.errors import *
2525
from ..core._error_codes import (
@@ -77,7 +77,7 @@ def build(
7777
)
7878

7979

80-
class _ODataClient(_ODataFileUpload, _RelationshipOperationsMixin):
80+
class _ODataClient(_FileUploadMixin, _RelationshipOperationsMixin):
8181
"""Dataverse Web API client: CRUD, SQL-over-API, and table metadata helpers."""
8282

8383
@staticmethod

src/PowerPlatform/Dataverse/data/_upload.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from typing import Optional
99

1010

11-
class _ODataFileUpload:
11+
class _FileUploadMixin:
1212
"""File upload capabilities (small + chunk) with auto selection."""
1313

1414
def _upload_file(

0 commit comments

Comments
 (0)