From a7daf36a57f6943a0287ae29a6995af4ac1e2ae9 Mon Sep 17 00:00:00 2001 From: Neeraj Gupta <254676+ua741@users.noreply.github.com> Date: Thu, 17 Oct 2024 15:56:20 +0530 Subject: [PATCH] [mob] Lint fix --- mobile/lib/services/location_service.dart | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mobile/lib/services/location_service.dart b/mobile/lib/services/location_service.dart index d0edee2f16..5fc2fc0777 100644 --- a/mobile/lib/services/location_service.dart +++ b/mobile/lib/services/location_service.dart @@ -90,7 +90,9 @@ class LocationService { centerPoint: centerPoint, ); await entityService.addOrUpdate( - EntityType.location, locationTag.toJson()); + EntityType.location, + locationTag.toJson(), + ); Bus.instance.fire(LocationTagUpdatedEvent(LocTagEventType.add)); } catch (e, s) { _logger.severe("Failed to add location tag", e, s);