Closed rvandegrift closed 7 years ago
In python3, dict.items() returns a view that iterates over the dictionary. By creating a list from those items, the subsequent modifications of the dictionary do not raise an exception.
This fixes the issue in https://github.com/g2p/bedup/issues/78 for me.
In python3, dict.items() returns a view that iterates over the dictionary. By creating a list from those items, the subsequent modifications of the dictionary do not raise an exception.
This fixes the issue in https://github.com/g2p/bedup/issues/78 for me.