Skip to content

Commit

Permalink
👕 noqa F403s
Browse files Browse the repository at this point in the history
  • Loading branch information
o-laurent committed Oct 30, 2023
1 parent ec7e844 commit 1e81d8f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
6 changes: 4 additions & 2 deletions tests/test_optimization_procedures.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,10 @@
from torch_uncertainty.models.resnet import resnet18, resnet50
from torch_uncertainty.models.vgg import vgg16
from torch_uncertainty.models.wideresnet import wideresnet28x10
from torch_uncertainty.optimization_procedures import *
from torch_uncertainty.optimization_procedures import get_procedure
from torch_uncertainty.optimization_procedures import (
get_procedure,
optim_regression,
)


class TestOptProcedures:
Expand Down
2 changes: 1 addition & 1 deletion torch_uncertainty/models/resnet/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# ruff: noqa: F401
# ruff: noqa: F401, F403
from .batched import *
from .masked import *
from .mimo import *
Expand Down
2 changes: 1 addition & 1 deletion torch_uncertainty/models/vgg/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# ruff: noqa: F401
# ruff: noqa: F401, F403
from .packed import *
from .std import *
2 changes: 1 addition & 1 deletion torch_uncertainty/models/wideresnet/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# ruff: noqa: F401
# ruff: noqa: F401, F403
from .batched import *
from .masked import *
from .mimo import *
Expand Down

0 comments on commit 1e81d8f

Please sign in to comment.