Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
danielegrattarola committed Jun 1, 2023
1 parent 2d0e0cf commit 74a108e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions spektral/layers/convolutional/gtv_conv.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def __init__(
activity_regularizer=None,
kernel_constraint=None,
bias_constraint=None,
**kwargs
**kwargs,
):
super().__init__(
activation=activation,
Expand All @@ -80,7 +80,7 @@ def __init__(
activity_regularizer=activity_regularizer,
kernel_constraint=kernel_constraint,
bias_constraint=bias_constraint,
**kwargs
**kwargs,
)

self.channels = channels
Expand Down
4 changes: 2 additions & 2 deletions spektral/layers/pooling/asym_cheeger_cut_pool.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def __init__(
bias_regularizer=None,
kernel_constraint=None,
bias_constraint=None,
**kwargs
**kwargs,
):
super().__init__(
k=k,
Expand All @@ -97,7 +97,7 @@ def __init__(
bias_regularizer=bias_regularizer,
kernel_constraint=kernel_constraint,
bias_constraint=bias_constraint,
**kwargs
**kwargs,
)

self.k = k
Expand Down

0 comments on commit 74a108e

Please sign in to comment.