From d227239651e0299e1b1c6239baa5d33a41e188f7 Mon Sep 17 00:00:00 2001 From: Andras Schmelczer Date: Tue, 27 Jan 2026 22:41:43 +0000 Subject: [PATCH] Format --- download_deprivation_data.py | 5 ++++- frontend/src/App.tsx | 4 +++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/download_deprivation_data.py b/download_deprivation_data.py index c83e713..5094002 100644 --- a/download_deprivation_data.py +++ b/download_deprivation_data.py @@ -25,7 +25,10 @@ def download_file(url: str, output_path: Path) -> None: f.write(chunk) downloaded += len(chunk) if total: - print(f"\rDownloaded {downloaded / 1024 / 1024:.1f} MB / {total / 1024 / 1024:.1f} MB", end="") + print( + f"\rDownloaded {downloaded / 1024 / 1024:.1f} MB / {total / 1024 / 1024:.1f} MB", + end="", + ) print(f"\nSaved to {output_path}") diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index 467ac7a..2e96967 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -52,7 +52,9 @@ export default function App() { // POI state const [pois, setPois] = useState([]); - const [selectedPOICategories, setSelectedPOICategories] = useState>(new Set()); + const [selectedPOICategories, setSelectedPOICategories] = useState>( + new Set() + ); const poiDebounceRef = useRef | null>(null); const poiAbortControllerRef = useRef(null);