Skip to content

Commit

Permalink
Minor lint fix on import
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreaCossu authored Oct 28, 2024
1 parent 972162c commit 57d1bf7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion avalanche/models/mobilenetv1.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@
try:
from pytorchcv.models.common import DwsConvBlock
except ImportError:
from pytorchcv.models.common.conv import DwsConvBlock # pytorchcv >= 0.0.68
# pytorchcv >= 0.0.68
from pytorchcv.models.common.conv import DwsConvBlock


def remove_sequential(network: nn.Module, all_layers: List[nn.Module]):
Expand Down

0 comments on commit 57d1bf7

Please sign in to comment.