From 827ae51f7240e3fbdb45b43a8bc5880a16565478 Mon Sep 17 00:00:00 2001 From: oobabooga <112222186+oobabooga@users.noreply.github.com> Date: Tue, 7 Mar 2023 00:23:36 -0300 Subject: [PATCH] Sort the imports --- api-example-stream.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/api-example-stream.py b/api-example-stream.py index 78ff0bd7..a5ed4202 100644 --- a/api-example-stream.py +++ b/api-example-stream.py @@ -5,11 +5,13 @@ https://github.com/oobabooga/text-generation-webui/pull/175 ''' -import string -import random -import websockets -import json import asyncio +import json +import random +import string + +import websockets + def random_hash(): letters = string.ascii_lowercase + string.digits