Skip to content

Commit

Permalink
Revert "Eia176 wide table (#3590)"
Browse files Browse the repository at this point in the history
This reverts commit 7163863.
  • Loading branch information
jdangerx committed Nov 27, 2024
1 parent 6d9e272 commit 740212a
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 331 deletions.
1 change: 0 additions & 1 deletion src/pudl/etl/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@


core_module_groups = {
"_core_eia176": [pudl.transform.eia176],
"core_assn": [glue_assets],
"core_censusdp1tract": [
pudl.convert.censusdp1tract_to_sqlite,
Expand Down
9 changes: 0 additions & 9 deletions src/pudl/extract/eia176.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,6 @@ def process_raw(
selection = self._metadata._get_partition_selection(partition)
return df.assign(report_year=selection)

def process_renamed(
self, df: pd.DataFrame, page: str, **partition: PartitionSelection
) -> pd.DataFrame:
"""Strip and lowercase raw text fields (except ID)."""
text_fields = ["area", "atype", "company", "item"]
for tf in text_fields:
df[tf] = df[tf].str.strip().str.lower()
return df


raw_eia176__all_dfs = raw_df_factory(Extractor, name="eia176")

Expand Down
1 change: 0 additions & 1 deletion src/pudl/transform/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@
from . import (
classes,
eia,
eia176,
eia860,
eia860m,
eia861,
Expand Down
113 changes: 0 additions & 113 deletions src/pudl/transform/eia176.py

This file was deleted.

207 changes: 0 additions & 207 deletions test/unit/transform/eia176_test.py

This file was deleted.

0 comments on commit 740212a

Please sign in to comment.