Skip to content

Commit ca4f2df

Browse files
Apply suggestions from code review
Co-authored-by: Pierre Sassoulas <[email protected]>
1 parent 55815df commit ca4f2df

File tree

2 files changed

+5
-13
lines changed

2 files changed

+5
-13
lines changed

pylint/pyreverse/diadefslib.py

+3-7
Original file line numberDiff line numberDiff line change
@@ -69,13 +69,9 @@ def _get_levels(self) -> tuple[int, int]:
6969

7070
def _should_include_by_depth(self, node: nodes.NodeNG) -> bool:
7171
"""Check if a node should be included based on depth."""
72-
# If max_depth is not set, include all nodes
73-
if self.config.max_depth is None:
74-
return True
75-
76-
# For other nodes, calculate depth based on their root module
77-
module_depth = node.root().name.count(".")
78-
return module_depth <= self.config.max_depth # type: ignore[no-any-return]
72+
# If max_depth is not set, include all nodes, otherwise, calculate depth based on
73+
# node's root module
74+
return self.config.max_depth is None or bool(node.root().name.count(".") <= self.config.max_depth)
7975

8076
def show_node(self, node: nodes.ClassDef) -> bool:
8177
"""Determine if node should be shown based on config."""

tests/pyreverse/test_diadefs.py

+2-6
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,6 @@ def test_regression_dataclasses_inference(
278278
assert cd.title == special
279279

280280

281-
# Test for no depth limit
282281
def test_should_include_by_depth_no_limit(
283282
generator: DiaDefGenerator, mock_node: Mock
284283
) -> None:
@@ -308,10 +307,7 @@ def test_should_include_by_depth_with_limit(
308307
- 'pkg.subpkg.module' -> depth 2 (2 dots)
309308
- 'pkg.subpkg.module.submodule' -> depth 3 (3 dots)
310309
"""
311-
# Set generator config
312310
generator.config.max_depth = max_depth
313-
314-
# Test cases for different depths
315311
test_cases = [
316312
"pkg",
317313
"pkg.subpkg",
@@ -323,9 +319,9 @@ def test_should_include_by_depth_with_limit(
323319
# Test if nodes are shown based on their depth and max_depth setting
324320
for i, node in enumerate(nodes):
325321
should_show = i <= max_depth
326-
print(
322+
msg = (
327323
f"Node {node.root.return_value.name} (depth {i}) with max_depth={max_depth} "
328324
f"{'should show' if should_show else 'should not show'}:"
329325
f"{generator._should_include_by_depth(node)}"
330326
)
331-
assert generator._should_include_by_depth(node) == should_show
327+
assert generator._should_include_by_depth(node) == should_show, msg

0 commit comments

Comments
 (0)