mirror of
https://github.com/ldericher/fftcgtool
synced 2025-01-15 15:02:59 +00:00
9 lines
215 B
Python
9 lines
215 B
Python
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)
|