Scrython
Scrython copied to clipboard
[cards.Named()] kwargs dont work
kwargs like format get ignored, because the super does not get called correctly.
# currently:
super(Named, self).__init__(self.url)
# should be:
super(Named, self).__init__(self.url, override=False, **kwargs)
also using format="image" crashes anyway
aiohttp.client_exceptions.ContentTypeError: 0, message='Attempt to decode JSON with unexpected mimetype: image/png', url=URL('...')