location: make accuracy default config floats

previously they were ints which could possibly
break caching with cachew
This commit is contained in:
Sean Breckenridge 2023-09-30 14:23:56 -07:00
parent 8addd2d58a
commit 7511564b37
2 changed files with 2 additions and 2 deletions

View file

@ -28,7 +28,7 @@ class semantic_locations_config(user_config.google_takeout_semantic):
# https://locationhistoryformat.com/reference/semantic/#/$defs/placeVisit/properties/locationConfidence
require_confidence: int = 40
# default accuracy for semantic locations
accuracy: float = 100
accuracy: float = 100.0
config = make_config(semantic_locations_config)