Skip to content

Commit

Permalink
more mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
sid-kap committed Apr 15, 2024
1 parent 80389be commit 30f5ee7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions python/housing_data/build_states.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
from pathlib import Path
from typing import Optional

import pandas as pd
from housing_data import state_population
Expand All @@ -26,7 +25,7 @@
}


def load_states(data_repo_path: Optional[Path]) -> pd.DataFrame:
def load_states(data_repo_path: Path) -> pd.DataFrame:
states_df = load_bps_all_years_plus_monthly(data_repo_path, "state")

population_df = state_population.get_state_population_estimates(
Expand Down

0 comments on commit 30f5ee7

Please sign in to comment.