bartneck / swiML

A project to formalise swimming programs using XML
MIT License
2 stars 2 forks source link

equipment missing from continue #94

Closed bartneck closed 3 months ago

bartneck commented 3 months ago

In the file JasiMasters2024031001.py I added equipment to the first continue:

oneSet=swiML.Continue(
    equipment=('fins','pads'),
    instructions=[oneSet1,oneSet2,oneSet1,oneSet3,oneSet1,oneSet4]
)

The resulting XML file does not contain any equipment.

calloc262 commented 3 months ago

fix added to all 3 swiML.py files was an issue for all instruction tags in a continue weren't being added not just equipment

bartneck commented 3 months ago

tested and solved. Well done!