From 8c5e2237f48e10c9f9d52a4be81af23d3af5031f Mon Sep 17 00:00:00 2001 From: jessicamack Date: Mon, 27 Mar 2023 11:38:01 -0400 Subject: [PATCH] import typing to fix lint issue Signed-off-by: jessicamack --- awx/main/wsrelay.py | 1 + 1 file changed, 1 insertion(+) diff --git a/awx/main/wsrelay.py b/awx/main/wsrelay.py index 6baa2954b2..93e7527dfa 100644 --- a/awx/main/wsrelay.py +++ b/awx/main/wsrelay.py @@ -1,6 +1,7 @@ import json import logging import asyncio +from typing import Dict import aiohttp from aiohttp import client_exceptions