Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
279b53e
ignore
matsumotosan Sep 11, 2025
6562410
forgot testts
matsumotosan Sep 11, 2025
baee08c
Merge branch 'master' into flake8-password-rules
tchaton Sep 11, 2025
54e35b6
Empty-Commit
Borda Sep 11, 2025
17eab59
Merge branch 'master' into flake8-password-rules
Borda Sep 11, 2025
be7fe5f
Merge branch 'master' into flake8-password-rules
matsumotosan Sep 12, 2025
e7eac6d
Merge branch 'master' into flake8-password-rules
matsumotosan Sep 12, 2025
b5d0648
Merge branch 'master' into flake8-password-rules
Borda Sep 12, 2025
ed2c40a
Merge branch 'master' into flake8-password-rules
SkafteNicki Sep 13, 2025
c23cf22
Empty-Commit
Borda Sep 14, 2025
a8ef433
Merge branch 'master' into flake8-password-rules
Borda Sep 15, 2025
c8113fa
Merge branch 'master' into flake8-password-rules
Borda Sep 15, 2025
debfe30
Merge branch 'master' into flake8-password-rules
matsumotosan Sep 15, 2025
4ef92d8
Merge branch 'master' into flake8-password-rules
matsumotosan Sep 15, 2025
733026b
Empty-Commit
Borda Sep 16, 2025
25fc4da
Merge branch 'master' into flake8-password-rules
Borda Sep 25, 2025
8220e6e
Merge branch 'master' into flake8-password-rules
matsumotosan Oct 6, 2025
b69d6c1
Merge branch 'master' into flake8-password-rules
matsumotosan Oct 7, 2025
9cd3000
Merge branch 'master' into flake8-password-rules
matsumotosan Oct 15, 2025
68ac46f
Merge branch 'master' into flake8-password-rules
Borda Oct 23, 2025
18f4636
Merge branch 'master' into flake8-password-rules
matsumotosan Oct 24, 2025
c0f12e5
Merge branch 'master' into flake8-password-rules
Borda Oct 28, 2025
6d4c161
Merge branch 'master' into flake8-password-rules
SkafteNicki Oct 29, 2025
bef2f36
Merge branch 'master' into flake8-password-rules
deependujha Oct 29, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ ignore = [
]
"src/**" = [
"S101", # todo: Use of `assert` detected
"S105", "S106", "S107", # todo: Possible hardcoded password: ...
"S113", # todo: Probable use of requests call without timeout
"S301", # todo: `pickle` and modules that wrap it can be unsafe when used to deserialize untrusted data, possible security issue
"S324", # todo: Probable use of insecure hash functions in `hashlib`
Expand All @@ -106,7 +105,6 @@ ignore = [
]
"tests/**" = [
"S101", # Use of `assert` detected
"S105", "S106", # todo: Possible hardcoded password: ...
"S301", # `pickle` and modules that wrap it can be unsafe when used to deserialize untrusted data, possible security issue
"S113", # todo: Probable use of requests call without timeout
"S311", # todo: Standard pseudo-random generators are not suitable for cryptographic purposes
Expand Down
2 changes: 1 addition & 1 deletion src/lightning/pytorch/callbacks/lr_monitor.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ def _extract_lr(self, param_group: dict[str, Any], name: str) -> dict[str, Any]:
self.lrs[name].append(lr)
return {name: lr}

def _remap_keys(self, names: list[list[str]], token: str = "/pg1") -> None:
def _remap_keys(self, names: list[list[str]], token: str = "/pg1") -> None: # noqa: S107
"""This function is used the remap the keys if param groups for a given optimizer increased."""
for group_new_names in names:
for new_name in group_new_names:
Expand Down
5 changes: 4 additions & 1 deletion src/lightning/pytorch/profilers/profiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,10 @@ def _rank_zero_info(self, *args: Any, **kwargs: Any) -> None:
log.info(*args, **kwargs)

def _prepare_filename(
self, action_name: Optional[str] = None, extension: str = ".txt", split_token: str = "-"
self,
action_name: Optional[str] = None,
extension: str = ".txt",
split_token: str = "-", # noqa: S107
) -> str:
args = []
if self._stage is not None:
Expand Down
Loading