scherroman / mugen

A command-line music video generator based on rhythm
MIT License
224 stars 39 forks source link

Import ABC from collections.abc for Python 3.10 compatibility. #36

Closed tirkarthi closed 2 years ago

tirkarthi commented 2 years ago

Importing from collections has been deprecated and removed in Python 3.10. Hence use collections.abc

codecov[bot] commented 2 years ago

Codecov Report

Merging #36 (cdc8b86) into master (04c1ce6) will not change coverage. The diff coverage is 100.00%.

@@           Coverage Diff           @@
##           master      #36   +/-   ##
=======================================
  Coverage   88.72%   88.72%           
=======================================
  Files          38       38           
  Lines        1535     1535           
=======================================
  Hits         1362     1362           
  Misses        173      173           
Impacted Files Coverage Δ
mugen/lists.py 69.44% <100.00%> (ø)

Continue to review full report at Codecov.

Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update 04c1ce6...cdc8b86. Read the comment docs.

scherroman commented 2 years ago

Thanks @tirkarthi!

tirkarthi commented 2 years ago

Thanks @scherroman