Radek Lát
Radek Lát
I use it almost daily! Thank you :heart:
That would be ideal if there would be one thing that could do both. But the use cases are incompatible: * Decorator has to return a function that accepts the...
It is currently failing on Python2. I'll check why and if it can be fixed.
It is fixed now :)
This is still an issue. I didn't search for issues and now created another PR fixing this (quite minimal): https://github.com/philadams/habitica/pull/56
I started observing this error in the last couple of weeks for my Sony WH-1000XM2 Wireless Bluetooth headphones. Strangely, there has not been any update to the headphones not bluez-tools...
The use case is quite common. If `get_in` is used to drill into deeply nested JSON structures, it can easily happen that somewhere along the path, the object is not...
From the documentation: > Returns a value corresponding to path in nested collection. It doesn't say anything about type checking or type requirements. So I assumed the behaviour is the...
Thank you for the example. Unfortunately, it works only partially. It doesn't given back the default value, because it just ignores the error (the code never gets to the return...
Another example to prove my point: The [`bolton.itertools.get_path()`](https://boltons.readthedocs.io/en/latest/iterutils.html#boltons.iterutils.get_path) from a different library also interprets "string key to a list" as "missing path" and raises either the same exception as for...