Hi there,
While looking through the source code of the viktor.api module, I found that the Entity class has 3 download methods attached to it. (File api.pyi, lines 46-48)
def download(self, encoding: str) -> str: ...
def download(self, encoding: None=...) -> bytes: ...
def download(self, encoding: str=...) -> Union[bytes, str]: ...
I think it is some redundant code leftover from development.
Cheers