Skip to content

Commit

Permalink
black format w updated black
Browse files Browse the repository at this point in the history
  • Loading branch information
jdebacker committed Feb 6, 2023
1 parent e748609 commit e4c2275
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion ogcore/TPI.py
Original file line number Diff line number Diff line change
Expand Up @@ -707,7 +707,6 @@ def run_TPI(p, client=None):

# TPI loop
while (TPIiter < p.maxiter) and (TPIdist >= p.mindist_TPI):

outer_loop_vars = (r_p, r, w, p_m, BQ, TR, theta)
# compute composite good price
p_i = (
Expand Down
1 change: 0 additions & 1 deletion ogcore/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,6 @@ def comp_array(name, a, b, tol, unequal, exceptions={}, relative=False):
return False

else:

if np.all(a < EPSILON) and np.all(b < EPSILON):
return True

Expand Down
2 changes: 0 additions & 2 deletions tests/test_household.py
Original file line number Diff line number Diff line change
Expand Up @@ -994,7 +994,6 @@ def test_get_y():
"bssmat,nssmat,cssmat,ltilde", test_data, ids=["passing", "failing"]
)
def test_constraint_checker_SS(bssmat, nssmat, cssmat, ltilde):

household.constraint_checker_SS(bssmat, nssmat, cssmat, ltilde)
assert True

Expand All @@ -1003,7 +1002,6 @@ def test_constraint_checker_SS(bssmat, nssmat, cssmat, ltilde):
"bssmat,nssmat,cssmat,ltilde", test_data, ids=["passing", "failing"]
)
def test_constraint_checker_TPI(bssmat, nssmat, cssmat, ltilde):

household.constraint_checker_TPI(bssmat, nssmat, cssmat, 10, ltilde)
assert True

Expand Down
1 change: 0 additions & 1 deletion tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -702,7 +702,6 @@ def test_not_connected_true():
"df,output_type,precision", test_data, ids=["tex", "json", "html"]
)
def test_save_return_table(df, output_type, precision):

test_str = utils.save_return_table(df, output_type, None, precision)
assert isinstance(test_str, str)

Expand Down

0 comments on commit e4c2275

Please sign in to comment.