mnets / pymnet

The original library for analyzing multilayer networks.
https://mnets.github.io/pymnet/
GNU General Public License v3.0
118 stars 24 forks source link

[REVIEW] Condense code #40

Closed nwlandry closed 3 weeks ago

nwlandry commented 3 weeks ago

Can you condense this line to

try:
    from collections import MutableMapping
except ImportError:
    from collections.abc import MutableMapping

I don't love the pass statements. With the above, if neither work, it will throw an error.

openjournals/joss-reviews/#6930