We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1513f72 commit c056b6bCopy full SHA for c056b6b
src/_pytask/console.py
@@ -148,6 +148,7 @@ def format_node_name(
148
"""Format the name of a node."""
149
if isinstance(node, PPathNode):
150
if node.name != node.path.as_posix():
151
+ # For example, any node added to a data catalog has its name set to the key.
152
if data_catalog_name := getattr(node, "attributes", {}).get(
153
DATA_CATALOG_NAME_FIELD
154
):
@@ -162,6 +163,11 @@ def format_node_name(
162
163
reduced_name = shorten_path(Path(path), paths)
164
return Text(f"{reduced_name}::{rest}")
165
166
+ # Python or other custom nodes that are not PathNodes.
167
+ if data_catalog_name := getattr(node, "attributes", {}).get(
168
+ DATA_CATALOG_NAME_FIELD
169
+ ):
170
+ return Text(f"{data_catalog_name}::{node.name}")
171
return Text(node.name)
172
173
0 commit comments