8 lines
188 B
Python
8 lines
188 B
Python
from collections import OrderedDict
|
|
|
|
def transfer_objects(app, transfer_card):
|
|
print(app)
|
|
for model, card in transfer_card.items():
|
|
print(model)
|
|
print(f"\t{card}")
|