cage-challenge-4 icon indicating copy to clipboard operation
cage-challenge-4 copied to clipboard

AllowTrafficZone incorrect type hint in constructor

Open zazyzaya opened this issue 10 months ago • 1 comments

Tiny issue, but the constructor for AllowTrafficZone is written as

def __init__(self, session: int, agent: str, from_subnet: str, to_subnet: IPv4Network):

when it should be

def __init__(self, session: int, agent: str, from_subnet: str, to_subnet: str):

and it's making my IDE sad.

zazyzaya avatar Apr 20 '24 15:04 zazyzaya