Proper usage of asyncio exceptions

They belong to the asyncio package, not asyncio.exceptions.
Also remove an unused Tuple import
This commit is contained in:
Andrew Ferrazzutti 2021-07-03 12:49:21 -04:00
parent 0672d41431
commit c4be4d79ed
1 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
from typing import Dict, Any, Callable, Awaitable, List, Optional, Tuple
from typing import Dict, Any, Callable, Awaitable, List, Optional
import logging
import asyncio
import json
@ -158,10 +158,10 @@ class RPCClient:
try:
line += await self._reader.readuntil()
break
except asyncio.exceptions.IncompleteReadError as e:
except asyncio.IncompleteReadError as e:
line += e.partial
break
except asyncio.exceptions.LimitOverrunError as e:
except asyncio.LimitOverrunError as e:
self.log.warning(f"Buffer overrun: {e}")
line += await self._reader.read(self._reader._limit)
if not line: