(cls)
| 104 | |
| 105 | @classmethod |
| 106 | def getAll5(cls): |
| 107 | all5 = eos.db.getCharacter("All 5") |
| 108 | |
| 109 | if all5 is None: |
| 110 | # We do not have to be afraid of committing here and saving |
| 111 | # edited character data. If this ever runs, it will be during the |
| 112 | # get character list phase when pyfa first starts |
| 113 | all5 = Character("All 5", 5) |
| 114 | eos.db.save(all5) |
| 115 | |
| 116 | return all5 |
| 117 | |
| 118 | @classmethod |
| 119 | def getAll0(cls): |