remove pretty print

patch bump
This commit is contained in:
onyx-and-iris 2022-11-13 12:55:28 +00:00
parent d0c5f776a2
commit 22217a40b0
2 changed files with 1 additions and 4 deletions

View File

@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "streamlabsio" name = "streamlabsio"
version = "0.1.0" version = "0.1.1"
description = "Get real time Twitch/Youtube events through Streamlabs SocketIO API" description = "Get real time Twitch/Youtube events through Streamlabs SocketIO API"
authors = ["onyx-and-iris <code@onyxandiris.online>"] authors = ["onyx-and-iris <code@onyxandiris.online>"]
license = "MIT" license = "MIT"

View File

@ -1,5 +1,4 @@
import logging import logging
import pprint
from pathlib import Path from pathlib import Path
import socketio import socketio
@ -12,8 +11,6 @@ except ModuleNotFoundError:
from .models import as_dataclass from .models import as_dataclass
pp = pprint.PrettyPrinter(indent=4)
class Client: class Client:
logger = logging.getLogger("socketio.socketio") logger = logging.getLogger("socketio.socketio")