qwarkys
qwarkys
This was fixed in the latest release. Thanks!
Google drive backup stopped working immediately after I upgraded to Android 11. The usual "financisto requires one or more google play services that are not currently available."
Have there been any changes in this or any suggested work-arounds? I'm using `Counter` with `floats` and need `Counter.total()`. Something like `defaultdict` won't help: `"defaultdict[str, float]" has no attribute "total"`
Thanks. FWIW, in order to pass `mypy --strict` I had to add 2 arguments: ``` class DefaultDictWithTotal(defaultdict[Any, Any]): def total(self) -> float: 'Sum of the counts' return sum(self.values()) ``` and...