Skip to content

Commit 5b73194

Browse files
committed
black
1 parent c24c309 commit 5b73194

1 file changed

Lines changed: 9 additions & 3 deletions

File tree

bilby/core/sampler/dynesty3_utils.py

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,14 @@
3737

3838
class BaseEnsembleSampler(InternalSampler):
3939

40-
_init_kwargs = {"ndim", "ncdim", "nonbounded",
41-
"periodic", "reflective", "proposals"}
40+
_init_kwargs = {
41+
"ndim",
42+
"ncdim",
43+
"nonbounded",
44+
"periodic",
45+
"reflective",
46+
"proposals",
47+
}
4248

4349
def __init__(self, **kwargs):
4450
super().__init__(**kwargs)
@@ -48,7 +54,7 @@ def __init__(self, **kwargs):
4854

4955
@classmethod
5056
def internal_sampler_init_kwargs(cls):
51-
return {kwarg for c in cls.mro() for kwarg in getattr(c, '_init_kwargs', set())}
57+
return {kwarg for c in cls.mro() for kwarg in getattr(c, "_init_kwargs", set())}
5258

5359
def prepare_sampler(
5460
self,

0 commit comments

Comments
 (0)