File tree 1 file changed +6
-3
lines changed
1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -183,14 +183,17 @@ def start_visit_tracking(self):
183
183
if hasattr (self ._impl , "start_visit_tracking" ):
184
184
self ._impl .start_visit_tracking ()
185
185
else :
186
- raise NotImplementedError ("Visit tracking is not available on this platform." )
186
+ raise NotImplementedError (
187
+ "Visit tracking is not available on this platform."
188
+ )
187
189
188
190
def stop_visit_tracking (self ):
189
191
if hasattr (self ._impl , "stop_visit_tracking" ):
190
192
self ._impl .stop_visit_tracking ()
191
193
else :
192
- raise NotImplementedError ("Visit tracking is not available on this platform." )
193
-
194
+ raise NotImplementedError (
195
+ "Visit tracking is not available on this platform."
196
+ )
194
197
195
198
def current_location (self ) -> LocationResult :
196
199
"""Obtain the user's current location using the location service.
You can’t perform that action at this time.
0 commit comments