Skip to content

Commit

Permalink
style: Fixes lint & format
Browse files Browse the repository at this point in the history
  • Loading branch information
frgfm committed Jan 24, 2024
1 parent 02e8818 commit 5bfd279
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/collect_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import locale
import os
import re
import subprocess
import subprocess # noqa S404
import sys
from pathlib import Path
from typing import NamedTuple
Expand Down
2 changes: 1 addition & 1 deletion torchcam/methods/activation.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from ._utils import locate_linear_layer
from .core import _CAM

__all__ = ["CAM", "ScoreCAM", "SSCAM", "ISCAM"]
__all__ = ["CAM", "ISCAM", "SSCAM", "ScoreCAM"]


class CAM(_CAM):
Expand Down
2 changes: 1 addition & 1 deletion torchcam/methods/gradient.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

from .core import _CAM

__all__ = ["GradCAM", "GradCAMpp", "SmoothGradCAMpp", "XGradCAM", "LayerCAM"]
__all__ = ["GradCAM", "GradCAMpp", "LayerCAM", "SmoothGradCAMpp", "XGradCAM"]


class _GradCAM(_CAM):
Expand Down

0 comments on commit 5bfd279

Please sign in to comment.