Skip to content

Commit

Permalink
black format
Browse files Browse the repository at this point in the history
  • Loading branch information
jdebacker committed Oct 25, 2023
1 parent 26d427f commit 9d6531a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 3 additions & 1 deletion ogusa/deterministic_profiles.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ def estimate_profiles(graphs=False):
"""
# Read in dataframe of PSID data
df = ogcore.utils.safe_read_pickle(
os.path.join(cur_path, "..", "data", "PSID", "psid_lifetime_income.pkl")
os.path.join(
cur_path, "..", "data", "PSID", "psid_lifetime_income.pkl"
)
)

model_results = {
Expand Down
3 changes: 2 additions & 1 deletion ogusa/estimate_beta_j.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ def beta_estimate(

# initialize parameters object
tax_func_path = os.path.join(
CUR_PATH, "..",
CUR_PATH,
"..",
"data",
"tax_functions",
"TxFuncEst_baseline_PUF.pkl",
Expand Down
4 changes: 3 additions & 1 deletion ogusa/psid_summ_stats.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@
# Read in dataframe of PSID data
df = pickle.load(
open(
os.path.join(cur_path, "..", "data", "PSID", "psid_lifetime_income.pkl"),
os.path.join(
cur_path, "..", "data", "PSID", "psid_lifetime_income.pkl"
),
"rb",
)
)
Expand Down

0 comments on commit 9d6531a

Please sign in to comment.