updated to fix linting errors (#1818)

Cleans and updates base branch
This commit is contained in:
Emma Nechamkin 2022-08-11 16:34:56 -04:00 committed by GitHub
commit 481a2a05f7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
15 changed files with 271 additions and 942 deletions

View file

@ -238,6 +238,7 @@ class CensusACSETL(ExtractTransformLoad):
self.df: pd.DataFrame
# pylint: disable=too-many-arguments
def _merge_geojson(
self,
df: pd.DataFrame,

View file

@ -1,10 +1,11 @@
from typing import List, NamedTuple
import pandas as pd
import geopandas as gpd
import numpy as np
from data_pipeline.utils import get_module_logger
# pylint: disable=unsubscriptable-object
logger = get_module_logger(__name__)