Skip to content

Commit

Permalink
Fix conditional in eqr archiver
Browse files Browse the repository at this point in the history
  • Loading branch information
zschira committed Feb 29, 2024
1 parent 0e5cb9f commit c00d845
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pudl_archiver/archivers/ferc/ferceqr.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ async def get_resources(self) -> ArchiveAwaitable:
"""

# Get quarterly EQR data
for year in range(2013, 2023):
for year in range(2013, 2024):
for quarter in range(1, 5):
if quarter < 3:
if quarter < 3 and year == 2013:
continue
yield self.get_quarter_dbf(year, quarter)

Expand Down

0 comments on commit c00d845

Please sign in to comment.