From 2c7c7ce1edce5125da81c7734d5d3562e8e43051 Mon Sep 17 00:00:00 2001 From: Niklas Wagner Date: Wed, 27 Dec 2023 11:54:12 +0100 Subject: [PATCH] Removed unused asyncio.Lock --- pyprusalink/client.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/pyprusalink/client.py b/pyprusalink/client.py index 6f067c0..5d4ab46 100644 --- a/pyprusalink/client.py +++ b/pyprusalink/client.py @@ -1,6 +1,5 @@ from __future__ import annotations -import asyncio from collections.abc import AsyncGenerator from contextlib import asynccontextmanager import hashlib @@ -17,7 +16,6 @@ def __init__( self.host = host self._username = username self._password = password - self._lock = asyncio.Lock() self._realm = "" self._nonce = ""