From e1c6e57e8ebcbf5bccbb393dce7da5d63031b324 Mon Sep 17 00:00:00 2001 From: Dmitry Semenov Date: Mon, 11 Jul 2022 00:22:40 +0300 Subject: [PATCH] Fix missing __all__ used by linters --- pygraphic/__init__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pygraphic/__init__.py b/pygraphic/__init__.py index 70c4787..647d53f 100644 --- a/pygraphic/__init__.py +++ b/pygraphic/__init__.py @@ -1,2 +1,5 @@ from ._gql_query import GQLQuery from ._gql_type import GQLType + + +__all__ = ["GQLType", "GQLQuery"]