Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pre-commit.ci] pre-commit autoupdate #336

Merged
merged 2 commits into from
Nov 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ci:
skip: [mypy, pytest]
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.7.4
rev: v0.8.0
hooks:
- id: ruff
args: [--fix]
Expand Down
2 changes: 1 addition & 1 deletion torchinfo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
from .torchinfo import summary

__all__ = (
"summary",
"ColumnSettings",
"Mode",
"ModelStatistics",
"RowSettings",
"Units",
"Verbosity",
"summary",
)
__version__ = "1.8.0"
6 changes: 2 additions & 4 deletions torchinfo/formatting.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,10 +135,8 @@ def layers_to_str(self, summary_list: list[LayerInfo], total_params: int) -> str
"""
new_str = ""
for layer_info in summary_list:
if (
layer_info.depth > self.max_depth
or self.hide_recursive_layers
and layer_info.is_recursive
if layer_info.depth > self.max_depth or (
self.hide_recursive_layers and layer_info.is_recursive
):
continue

Expand Down
Loading