From 5de203ea1a87da86ed3dd59b2d6ca742d7bed0be Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Fri, 7 Feb 2025 08:48:28 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- .github/workflows/publish.yaml | 2 +- znsocket/__init__.py | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 077d35b..27953cd 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -16,4 +16,4 @@ jobs: PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN }} run: | uv build - uv publish --token $PYPI_TOKEN \ No newline at end of file + uv publish --token $PYPI_TOKEN diff --git a/znsocket/__init__.py b/znsocket/__init__.py index 271f05f..86ee668 100644 --- a/znsocket/__init__.py +++ b/znsocket/__init__.py @@ -1,6 +1,5 @@ from znsocket.client import Client from znsocket.objects import Dict, List -from znsocket.server import Server, attach_events, Storage +from znsocket.server import Server, Storage, attach_events __all__ = ["Client", "Server", "List", "Dict", "attach_events", "Storage"] -