Peter Volf
Peter Volf
The steps described in https://github.com/elementary/switchboard-plug-power/issues/200 seem to consistently reproduce this problem on my machine (XPS 9500). Thanks @tomaswarynyca for pointing me at this issue.
The issue might be the same as in #772 - old `appstreamcli` version is used by houston.
Should I wait until appstreamcli is upgraded, or should I just switch to `GPL-3.0-only`? Would that pass validation currently?
Apparently `GPL-3.0-only` is also treated as invalid... Can I somehow validate my `appdata.xml` locally with the exact same options (and `appstreamcli` version)? Validating it with my current `appstreamcli` version (with...
Yes, I was on the latest version of elementary and I followed all steps from the guide. I don't remember exactly, but maybe I installed Juno when it was still...
File upload is probably out of scope for `flask_accepts`, since its goal is to make `marshmallow` and `flask_restx` play together. I think the best solution is to write your own...
Example solution: ```python from functools import wraps from flask import abort from flask_restx import Namespace from flask_restx.reqparse import RequestParser from werkzeug.datastructures import FileStorage def accepts_files(*, api: Namespace, argument_name: str =...
My two cents: I just don't think forcing return values to be tuples is a good idea. As you said it's a huge breaking change and adds (in most cases...
There is no standard for building REST APIs, it's an API implementation style that uses HTTP methods to communicate semantics. Everything you put on top of this (like `PUT` *must*...
> If you need to validate data, declare a base model with `table=False` (the default) and then inherit from that model in one with `table=True`. > > Validate the data...