Skip to content

Commit 5a64744

Browse files
committed
fixes pylint error
Signed-off-by: Wenqi Li <wenqil@nvidia.com>
1 parent 2139845 commit 5a64744

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/ngc_mmar_loading.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def test_loading_mmar(self, item):
4040
)
4141
pretrained_weights = {k.split(".", 1)[1]: v for k, v in pretrained_weights["state_dict"].items()}
4242
sys.path.append(os.path.join(f"{item['name']}", "custom")) # custom model folder
43-
from vit_network import ViTAutoEnc
43+
from vit_network import ViTAutoEnc # pylint: disable=E0401
4444

4545
model = ViTAutoEnc(
4646
in_channels=1,

0 commit comments

Comments
 (0)