There is performance issue in
variables/household/demographic/geographic/county/county.py
It calls household("first_county_in_state", period) unconditionally on line 43. It is an expensive computation and it should only be called if valid_fips.any() is false.
There is performance issue in
variables/household/demographic/geographic/county/county.py
It calls
household("first_county_in_state", period)unconditionally on line 43. It is an expensive computation and it should only be called if valid_fips.any() isfalse.