hohav / py-slippi

Python library for parsing SSBM replay files
MIT License
56 stars 25 forks source link

Fix index error #20

Closed scottnuma closed 4 years ago

scottnuma commented 4 years ago

Make _format_collection compatible with empty collections

hohav commented 4 years ago

Thanks for the fix!

Nitpick: it's idiomatic to use the fact that evaluating a list in a boolean context will return True iff the list is non-empty. So could you change len(elements) > 0 to just elements?

scottnuma commented 4 years ago

patched it up (y)

hohav commented 4 years ago

Thanks!