1
0
Files
electrum/electrum/tests
SomberNight 7354feeffe follow-up fix tests: logic typo
follow-up https://github.com/spesmilo/electrum/pull/7202

defaultdict[int] is a type!

```
>>> from collections import defaultdict
>>> d = defaultdict[int]
>>> d[2]
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: There are no type variables left in collections.defaultdict[int]
```

Also, prior to py3.9, it is a TypeError.
2021-12-17 15:21:21 +01:00
..
2021-04-30 19:55:47 +02:00
2020-02-04 13:35:58 +01:00
2021-12-17 15:21:21 +01:00
2021-06-10 18:52:12 +02:00
2021-06-22 19:24:16 +02:00
2020-02-25 20:45:17 +01:00
2021-03-19 10:17:02 +01:00