Skip to content

Commit 955ac23

Browse files
committed
Fix pre-commit
1 parent 3722967 commit 955ac23

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

pymc/step_methods/hmc/nuts.py

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -242,24 +242,24 @@ def competence(var, has_grad):
242242

243243
class _Tree:
244244
__slots__ = (
245-
"ndim",
246-
"integrator",
247-
"start",
248-
"step_size",
249245
"Emax",
250-
"start_energy",
251-
"rng",
252-
"left",
253-
"right",
254-
"proposal",
255246
"depth",
256-
"log_size",
247+
"floatX",
248+
"integrator",
249+
"left",
257250
"log_accept_sum",
251+
"log_size",
252+
"max_energy_change",
258253
"mean_tree_accept",
259254
"n_proposals",
255+
"ndim",
260256
"p_sum",
261-
"max_energy_change",
262-
"floatX",
257+
"proposal",
258+
"right",
259+
"rng",
260+
"start",
261+
"start_energy",
262+
"step_size",
263263
)
264264

265265
def __init__(

0 commit comments

Comments
 (0)