graue70
graue70
Workaround for `&&` is using two separate `FILTER` statements (as Niklas mentioned). I don't know an easy workaround for `||`.
I had the same problem and the solution given in https://github.com/osixia/docker-phpLDAPadmin/issues/30#issuecomment-324091598 worked perfectly for me with version 0.7.2. Thank you!
related to #808
> it probably wont be added anytime soon, we will see @tibbi Does this mean you won't accept an MR for this?
I cannot reproduce the error either. The provided code runs fine.
> > When you pass exists=True, you are telling Typer that the value that is passed needs to exist. > > I think that should just check for existence and...
You can circumvent the problem if you use a `str` instead of a `pathlib.Path`, e.g. like this: ```python def cli( path: Path = typer.Option( str(DEFAULT_MEDIA_DIR), exists=True, ), ): pass ```...
I find the two lines on top of each other at the same level of indentation confusing. Why not use nested lines as in the following example? > > [Expand...
Is there a reason why you chose a different location ('/usr/share/keychain') for the key than in the article? It seems to me like '/usr/share/keyrings' has become the de-facto standard.