Skip to content

Commit 9ee4a75

Browse files
authored
Fix lint
1 parent cd87f2a commit 9ee4a75

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

test/test_generate_quantities.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def test_from_csv_files(self):
8383
bern_gqs.mcmc_sample.draws_pd().shape[1]
8484
+ bern_gqs.draws_pd().shape[1],
8585
)
86-
86+
8787
self.assertEqual(
8888
list(bern_gqs.draws_pd(vars=column_names).columns),
8989
column_names,
@@ -101,11 +101,12 @@ def test_from_csv_files(self):
101101
column_names[:3][::-1],
102102
)
103103
self.assertEqual(
104-
list(bern_gqs.draws_pd(vars=['y_rep[3]', 'y_rep[6]', 'y_rep[2]']).columns),
104+
list(bern_gqs.draws_pd(
105+
vars=['y_rep[3]', 'y_rep[6]', 'y_rep[2]']
106+
).columns),
105107
['y_rep[3]', 'y_rep[6]', 'y_rep[2]'],
106108
)
107109

108-
109110
def test_from_csv_files_bad(self):
110111
# gq model
111112
stan = os.path.join(DATAFILES_PATH, 'bernoulli_ppc.stan')

0 commit comments

Comments
 (0)