Okke Formsma
Okke Formsma
has anyone found an alternative with django2 support?
Does your crate compile? I've had the same problem when autocompletion breaks down when there were compile errors in the crate (e.g. missing imports)
Unfortunately I'm also running into this issue, while trying to integrate with Questionmark. It looks like they are using some homebuilt php script. Would you be open to a pull...
I've found a workaround for our use case; just add a validUntil in the far future and don't fill in the metadata url. ``` ``` ``` ```
@brettlangdon, I was thinking along the lines of setting the required fields to a specific value, something like from flask_env import RequiredEnvironmentValue class StagingConfig(metaclass=MetaFlaskEnv): ENV_PREFIX = 'FLASK_' SECRET_KEY = RequiredEnvironmentValue...
That's nice. I'm not a very big fan of the chained commands. Maybe just use optional parameters instead? Also, I think variables should be implicitly required, unless a default value...
I gave this a stab for myself, feel free to use it in any way. This is based on the descriptor pattern (https://docs.python.org/2/howto/descriptor.html) ```python class EnvVar(): def __init__(self, name=None, default=None,...
code lgtm, some docs are needed before we can merge. I left a minor comment on a comment :)
I think the easiest implementation would be to make a "negative" version of `implicit_modifiers` (keycode_state_changed.c, hid.c), which turns a modifier off until the next keypress.
Before we can merge this, one or more tests will have to be written to verify the behavior. I don't know why the tests are not being run for this...