1
0
Fork 0
mirror of https://github.com/ldericher/fftcgtool synced 2025-01-15 15:02:59 +00:00
fftcgtool/fftcg/opus.py

10 lines
215 B
Python
Raw Normal View History

2021-08-02 23:55:12 +00:00
from .card import Card
class Opus:
def __init__(self, data):
self.__cards = [Card(card_data) for card_data in data]
def __str__(self):
return "\n".join(str(card) for card in self.__cards)