Skip to content

Commit

Permalink
style: format code with Black
Browse files Browse the repository at this point in the history
This commit fixes the style issues introduced in a12f49c according to the output
from Black.

Details: None
  • Loading branch information
deepsource-autofix[bot] authored Feb 1, 2024
1 parent a12f49c commit d5eb2b0
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions ebtorch/nn/convstems.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ def convnext_stem(
padding: int = 0,
normalize: bool = True,
) -> nn.Sequential:

stem_block: nn.ModuleList = nn.ModuleList(
[nn.Conv2d(in_channels, out_channels, kernel_size, kernel_size, padding)]
)
Expand All @@ -75,7 +74,6 @@ def convstem_block(
out_channels: int,
normalize: bool = True,
) -> nn.Sequential:

stem_block: nn.ModuleList = nn.ModuleList(
[nn.Conv2d(in_channels, post_conv_channels, 3, 2, 1, bias=False)]
)
Expand All @@ -93,7 +91,6 @@ def smallconv_featurizer(
out_channels: int,
pool: bool = True,
):

stem_block: nn.ModuleList = nn.ModuleList(
[nn.Conv2d(in_channels, out_channels, 3), nn.ReLU()]
)
Expand Down

0 comments on commit d5eb2b0

Please sign in to comment.