From 1775c24485d556903979a1a24d81b23de05a73d2 Mon Sep 17 00:00:00 2001 From: Dave Pearson Date: Mon, 21 Nov 2022 09:10:04 +0000 Subject: [PATCH] Help convince type checkers and linters that Pixels is "exported" --- rich_pixels/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rich_pixels/__init__.py b/rich_pixels/__init__.py index 95bf8c6..652f14d 100644 --- a/rich_pixels/__init__.py +++ b/rich_pixels/__init__.py @@ -1 +1,3 @@ from rich_pixels._pixel import Pixels + +__all__ = [ "Pixels" ]