Skip to content

Commit 9d4b3bf

Browse files
committed
Formatting
1 parent ab7bf4a commit 9d4b3bf

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

diffsync/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
Set,
3030
)
3131
from typing_extensions import deprecated
32-
import warnings
3332

3433
from pydantic import ConfigDict, BaseModel, PrivateAttr
3534
import structlog # type: ignore

tests/unit/test_deprecation.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1-
21
from diffsync import DiffSync
32

43
import pytest
54

5+
66
def test_diffsync_deprecation_warning():
77
with pytest.deprecated_call():
8+
89
class TestAdapter(DiffSync):
910
pass
11+
1012
TestAdapter()

0 commit comments

Comments
 (0)