Skip to content

Commit 867bf85

Browse files
committed
Convert possible attributes keys to lower (close #108)
1 parent 68cd605 commit 867bf85

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pycaching/cache.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ class Cache(object):
3232
# generated by util.get_possible_attributes()
3333
# TODO: smarter way of keeping attributes up to date
3434
_possible_attributes = {
35-
"AbandonedBuilding": "Abandoned Structure",
36-
"UV": "UV Light Required",
35+
"abandonedbuilding": "Abandoned Structure",
36+
"uv": "UV Light Required",
3737
"available": "Available at all times",
3838
"bicycles": "Bicycles",
3939
"boat": "Boat",
@@ -92,7 +92,7 @@ class Cache(object):
9292
"teamwork": "Teamwork Required",
9393
"thorn": "Thorns",
9494
"ticks": "Ticks",
95-
"touristOK": "Tourist Friendly",
95+
"touristok": "Tourist Friendly",
9696
"treeclimbing": "Tree Climbing",
9797
"wading": "May require wading",
9898
"water": "Drinking water nearby",

0 commit comments

Comments
 (0)