From 22217a40b046fa6369db3d3f2385c4c2a0955b97 Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Sun, 13 Nov 2022 12:55:28 +0000 Subject: [PATCH] remove pretty print patch bump --- pyproject.toml | 2 +- streamlabsio/client.py | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 805e5d0..634d016 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "streamlabsio" -version = "0.1.0" +version = "0.1.1" description = "Get real time Twitch/Youtube events through Streamlabs SocketIO API" authors = ["onyx-and-iris "] license = "MIT" diff --git a/streamlabsio/client.py b/streamlabsio/client.py index f5649eb..8a94648 100644 --- a/streamlabsio/client.py +++ b/streamlabsio/client.py @@ -1,5 +1,4 @@ import logging -import pprint from pathlib import Path import socketio @@ -12,8 +11,6 @@ except ModuleNotFoundError: from .models import as_dataclass -pp = pprint.PrettyPrinter(indent=4) - class Client: logger = logging.getLogger("socketio.socketio")