Unverified Commit 149af62e authored by John Chilton's avatar John Chilton Committed by Nicola Soranzo
Browse files

Fix typing for unpinned request dependency.

parent 4ac1ff10
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -183,7 +183,9 @@ class GalaxyASGIRequest(GalaxyAbstractRequest):

    @property
    def host(self) -> str:
        return str(self.__request.client.host)
        client = self.__request.client
        assert client is not None
        return str(client.host)


class GalaxyASGIResponse(GalaxyAbstractResponse):