Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
VolkerBergen committed Oct 21, 2020
2 parents 4889759 + 7532953 commit f7498c1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions scvelo/tools/dynamical_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@


class DynamicsRecovery(BaseDynamics):
def __init__(self, adata=None, gene=None, load_pars=None, **kwargs):
super(DynamicsRecovery, self).__init__(adata, gene, **kwargs)
def __init__(self, adata, gene, load_pars=None, **kwargs):
super().__init__(adata, gene, **kwargs)
if load_pars and "fit_alpha" in adata.var.keys():
self.load_pars(adata, gene)
elif self.recoverable:
Expand Down
4 changes: 2 additions & 2 deletions scvelo/tools/dynamical_model_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -663,8 +663,8 @@ def curve_dists(
class BaseDynamics:
def __init__(
self,
adata=None,
gene=None,
adata,
gene,
u=None,
s=None,
use_raw=False,
Expand Down

0 comments on commit f7498c1

Please sign in to comment.