Skip to content

Commit

Permalink
Black formatted files
Browse files Browse the repository at this point in the history
  • Loading branch information
rickecon committed Oct 2, 2024
1 parent 2d2af86 commit b048c95
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
7 changes: 4 additions & 3 deletions fiscalsim_us/data/datasets/cps/raw_cps.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,9 +155,10 @@ def generate(self) -> pd.DataFrame:
"Received a 404 response when fetching the data."
)
try:
with BytesIO() as file, pd.HDFStore(
self.file_path, mode="w"
) as storage:
with (
BytesIO() as file,
pd.HDFStore(self.file_path, mode="w") as storage,
):
content_length_actual = 0
for data in response.iter_content(int(1e6)):
progress_bar.update(len(data))
Expand Down
4 changes: 4 additions & 0 deletions fiscalsim_us/tests/microsimulation/test_microsim.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
import pytest


@pytest.mark.local
def test_microsim_runs_cps():
import numpy as np
from fiscalsim_us import Microsimulation
Expand Down

0 comments on commit b048c95

Please sign in to comment.