From c6f3e1e86b5884c93158e6cca06a78fa46452f72 Mon Sep 17 00:00:00 2001 From: Yuta Hayashibe Date: Sat, 24 Sep 2022 21:52:27 +0900 Subject: [PATCH] Fix for lint --- whisper_streaming/serve.py | 1 - whisper_streaming/websocket_client.py | 1 - 2 files changed, 2 deletions(-) diff --git a/whisper_streaming/serve.py b/whisper_streaming/serve.py index d452fe1..d95f29e 100644 --- a/whisper_streaming/serve.py +++ b/whisper_streaming/serve.py @@ -1,7 +1,6 @@ #!/usr/bin/env python3 import asyncio -import json from logging import getLogger import numpy as np diff --git a/whisper_streaming/websocket_client.py b/whisper_streaming/websocket_client.py index c54d540..4857c61 100644 --- a/whisper_streaming/websocket_client.py +++ b/whisper_streaming/websocket_client.py @@ -1,7 +1,6 @@ #!/usr/bin/env python3 import argparse import asyncio -import json from logging import DEBUG, INFO, basicConfig, getLogger from typing import Optional, Union