From 946b1965b2f4c3293ecf2f2f73074808cf47289e Mon Sep 17 00:00:00 2001 From: David Danier Date: Wed, 17 Apr 2024 09:15:21 +0200 Subject: [PATCH] chore: Make pylance happy by 'exporting' in __init__.py (see https://github.com/microsoft/pylance-release/issues/2953#issuecomment-1168956296) --- pydantic_changedetect/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pydantic_changedetect/__init__.py b/pydantic_changedetect/__init__.py index b5489da..2620a80 100644 --- a/pydantic_changedetect/__init__.py +++ b/pydantic_changedetect/__init__.py @@ -1 +1 @@ -from .changedetect import ChangeDetectionMixin +from .changedetect import ChangeDetectionMixin as ChangeDetectionMixin