Skip to content

Commit 02b8a07

Browse files
authored
re-enable linting for the core package (#7677)
* re-enable linting for the core package * fix docstring
1 parent dd95def commit 02b8a07

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Diff for: .github/workflows/linting.yml

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ on:
88
- "test/**/*.py"
99
- "e2e/**/*.py"
1010
- "pyproject.toml"
11-
- "!haystack/core/**/*.py"
1211

1312
env:
1413
PYTHON_VERSION: "3.8"

Diff for: haystack/core/pipeline/descriptions.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,9 @@ def find_pipeline_inputs(
1616
graph: networkx.MultiDiGraph, include_connected_sockets: bool = False
1717
) -> Dict[str, List[InputSocket]]:
1818
"""
19-
Collect components that have disconnected/connected input sockets. Note that this method returns *ALL*
20-
disconnected input sockets, including all such sockets with default values.
19+
Collect components that have disconnected/connected input sockets.
20+
21+
Note that this method returns *ALL* disconnected input sockets, including all such sockets with default values.
2122
"""
2223
return {
2324
name: [

0 commit comments

Comments
 (0)