Files
aprsd/tests
hemna 7a2ed79759 fix: remove dead-code Python version guard in utils/__init__.py (#270)
The guard:
    if sys.version_info.major == 3 and sys.version_info.minor >= 3:
        from collections.abc import MutableMapping
    else:
        from collections.abc import MutableMapping

has identical branches — both import from collections.abc (the correct
Python 3.3+ location).  Remove the guard; keep the bare import.

Closes #251
2026-08-28 14:23:58 -04:00
..
2025-12-09 17:20:23 -05:00
2026-01-06 18:57:54 -05:00
2025-12-09 17:20:23 -05:00
2026-01-05 17:00:03 -05:00