Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
mgcth committed May 5, 2024
1 parent 4c2434f commit ed598f0
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/lantmateriet/choropleth.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,9 @@ def extract_choropleth(all_files: list[Path]):


def get_municipalities_choropleth(administrative_path: str, scb_path: str):
"""Get municipalities choropleth."""
admin = Path(administrative_path)
scb = Path(scb_path)
_ = Path(scb_path)

all_files = [
admin / "04_riksgrans.geojson",
Expand All @@ -34,8 +35,9 @@ def get_municipalities_choropleth(administrative_path: str, scb_path: str):


def get_regions_choropleth(administrative_path: str, scb_path: str):
"""Get regions choropleth."""
admin = Path(administrative_path)
scb = Path(scb_path)
_ = Path(scb_path)

all_files = [
admin / "04_riksgrans.geojson",
Expand Down

0 comments on commit ed598f0

Please sign in to comment.