Skip to content

Commit

Permalink
modify param name
Browse files Browse the repository at this point in the history
  • Loading branch information
catherinebirney committed Jan 4, 2024
1 parent 48b3e5c commit 3efb0bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions flowsa/flowbysector.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def generateFlowBySector(
external_config_path: str = None,
download_sources_ok: bool = settings.DEFAULT_DOWNLOAD_IF_MISSING,
retain_activity_columns: bool = False,
append_sector_name=False,
append_sector_names=False,
**kwargs
) -> 'FlowBySector':
'''
Expand Down Expand Up @@ -212,7 +212,7 @@ def generateFlowBySector(
fbs = fbs.assign(**dict.fromkeys(dq_cols, None))

# append the sector names to the FBS if specified
if append_sector_name:
if append_sector_names:
cw = load_crosswalk(
f'Sector_{fbs.config["target_naics_year"]}_Names')
for s in ['Produced', 'Consumed']:
Expand Down

0 comments on commit 3efb0bb

Please sign in to comment.