Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Jul 11, 2022
1 parent b98c3aa commit 26bda80
Show file tree
Hide file tree
Showing 2 changed files with 213 additions and 119 deletions.
4 changes: 2 additions & 2 deletions examples/basic-1-bin/dummyproblem.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"def yields(x):\n",
" s = 15 + x\n",
" b = 45 - 2 * x\n",
" db = 1 + 0.2 * x ** 2\n",
" db = 1 + 0.2 * x**2\n",
" return jnp.asarray([s]), jnp.asarray([b]), jnp.asarray([db])"
]
},
Expand Down Expand Up @@ -284,7 +284,7 @@
"x = np.linspace(0, 10)\n",
"s = 15 + x\n",
"b = 45 - 2 * x\n",
"db = 1 + 0.2 * x ** 2\n",
"db = 1 + 0.2 * x**2\n",
"\n",
"\n",
"def get_cls(s, b, db):\n",
Expand Down
Loading

0 comments on commit 26bda80

Please sign in to comment.