Skip to content

Commit 0edcb96

Browse files
committed
Minor changes, added FEH character
1 parent e542364 commit 0edcb96

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

controller.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@
2121
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2222
SOFTWARE.
2323
'''
24+
import traceback
2425
import view
2526
from models.adventurer import Adventurer
2627
from models.wyrmprint import Wyrmprint
2728
from models.dragon import Dragon
28-
import traceback
2929

3030
async def query(criteria):
3131
try:

master.db

0 Bytes
Binary file not shown.

models/adventurer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
class Adventurer:
3030
@staticmethod
3131
def find_adventurers(element=None, weapon=None, skill=None, ability=None,
32-
rarity=None):
32+
rarity=None):
3333
adventurers = []
3434
params = ()
3535
full_query = Adventurer.adventurer_search_query_text

models/dragon.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
class Dragon:
3030
@staticmethod
3131
def find_dragons(element=None, skill=None, ability=None, rarity=None,
32-
level=2):
32+
level=2):
3333
dragons = []
3434
params = ()
3535
full_query = Dragon.dragon_search_query_text

0 commit comments

Comments
 (0)