I have the following code in Python 3: class Position: def __init__(self, x: int, y: int): self.x = x self.y = y def __add__(self, oth
I make creating a discord asynchronous library that is fully typed. I have a method that create objects from a aiohttp get requests such as the following exampl