Skip to content

Commit e67304a

Browse files
committed
Remove trailing white space.
1 parent 2abf0d9 commit e67304a

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

pymc3/model.py

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -810,9 +810,9 @@ class Model(Factor, WithMemoization, metaclass=ContextMeta):
810810
of theano for a complete list. Set config key
811811
``compute_test_value`` to `raise` if it is None.
812812
bounds_check: bool
813-
Ensure that input parameters to distributions are in a valid
814-
range. If your model is built in a way where you know your
815-
parameters can only take on valid values you can set this to
813+
Ensure that input parameters to distributions are in a valid
814+
range. If your model is built in a way where you know your
815+
parameters can only take on valid values you can set this to
816816
False for increased speed.
817817
818818
Examples
@@ -900,9 +900,7 @@ def __new__(cls, *args, **kwargs):
900900
instance._theano_config = theano_config
901901
return instance
902902

903-
def __init__(
904-
self, name="", model=None, theano_config=None, coords=None, bounds_check=False
905-
):
903+
def __init__(self, name="", model=None, theano_config=None, coords=None, bounds_check=False):
906904
self.name = name
907905
self.coords = {}
908906
self.RV_dims = {}

0 commit comments

Comments
 (0)