Skip to content

Commit 6fb81ab

Browse files
committed
Add Microsoft copyright header to all source and test files
- Added standard Microsoft copyright header to all Python files in src/dataverse_sdk/ - Added copyright header to all test files in tests/ - Ensures consistent licensing information across the codebase - Header format: # Copyright (c) Microsoft Corporation. # Licensed under the MIT license.
1 parent 9529416 commit 6fb81ab

16 files changed

+45
-0
lines changed

CONTRIBUTING.md

Whitespace-only changes.

src/dataverse_sdk/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT license.
3+
14
"""
25
Microsoft Dataverse SDK for Python.
36

src/dataverse_sdk/__version__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT license.
3+
14
"""Version information for dataverse-client-python package."""
25

36
__version__ = "0.1.0"

src/dataverse_sdk/auth.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT license.
3+
14
from __future__ import annotations
25

36
from dataclasses import dataclass

src/dataverse_sdk/client.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT license.
3+
14
from __future__ import annotations
25

36
from typing import Any, Dict, Optional, Union, List, Iterable

src/dataverse_sdk/config.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT license.
3+
14
from __future__ import annotations
25

36
from dataclasses import dataclass

src/dataverse_sdk/error_codes.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT license.
3+
14
# HTTP subcode constants
25
HTTP_400 = "http_400"
36
HTTP_401 = "http_401"

src/dataverse_sdk/errors.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT license.
3+
14
from __future__ import annotations
25
from typing import Any, Dict, Optional
36
import datetime as _dt

src/dataverse_sdk/http.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT license.
3+
14
from __future__ import annotations
25

36
import time

src/dataverse_sdk/odata.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT license.
3+
14
from __future__ import annotations
25

36
from typing import Any, Dict, Optional, List, Union, Iterable

0 commit comments

Comments
 (0)