We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65e803e commit 0d1068aCopy full SHA for 0d1068a
2 files changed
.gitignore
@@ -18,4 +18,5 @@ var/
18
logs/
19
__pycache__/
20
.pytest_cache/
21
-token.py
+token.py
22
+.pypirc
geocachingapi/models.py
@@ -16,7 +16,7 @@ class GeocachingUser:
16
def update_from_dict(self, data: Dict[str, Any]) -> None:
17
if "username" in data:
self.username = data["username"]
- if "reference" in data:
+ if "referenceCode" in data:
self.reference_code = data["referenceCode"]
if "findCount" in data:
self.find_count = data["findCount"]
0 commit comments