Skip to content

Commit

Permalink
switched positions to make results display the title instead of number
Browse files Browse the repository at this point in the history
  • Loading branch information
sudoShiba committed Mar 19, 2021
1 parent 1ca038f commit 6a4e660
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions elementify/elementify.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@ def lines(input):

# mapping between search options and columns in the DataFrame
d = {
"1": "atSym",
"2": "atNum",
"3": "atWeight",
"4": "ENname",
"5": "NLname",
"atomic symbol": "atSym",
"atomic number": "atNum",
"atomic weight": "atWeight",
"english name": "ENname",
"dutch name": "NLname",
"1": "atSym",
"2": "atNum",
"3": "atWeight",
"4": "ENname",
"5": "NLname"
}

while True:
Expand Down

0 comments on commit 6a4e660

Please sign in to comment.