From af4bba2ef7d5153d097445c7f0b0ea34bddabee1 Mon Sep 17 00:00:00 2001 From: Vanessa Martinez <11972166+vnessamartinez@users.noreply.github.com> Date: Thu, 2 May 2024 16:40:30 -0700 Subject: [PATCH] more flake8 --- inciweb_wildfires/__init__.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/inciweb_wildfires/__init__.py b/inciweb_wildfires/__init__.py index 7f734f9..d8d63ed 100644 --- a/inciweb_wildfires/__init__.py +++ b/inciweb_wildfires/__init__.py @@ -51,7 +51,6 @@ def get_data(t) -> FeatureCollection: def get_incidents() -> FeatureCollection: """ Get all active wildfire incidents from InciWeb. - Returns GeoJson FeatureCollection. """ features = get_data("Wildfire") @@ -59,10 +58,10 @@ def get_incidents() -> FeatureCollection: # Pass it out return features + def get_prescribed_fires() -> FeatureCollection: """ Get all active prescribed fire incidents from InciWeb. - Returns GeoJson FeatureCollection. """ features = get_data("Prescribed Fire")