6 lines
145 B
Python
6 lines
145 B
Python
import lib as neo
|
|
|
|
if __name__ == "__main__":
|
|
result = neo.getHarvests()
|
|
for i in result:
|
|
print(f"name: {i.name} plant: {i.getPlant().name}") |