f
This commit is contained in:
@@ -1607,7 +1607,7 @@ class PipelineExecutor:
|
||||
item = selected_items[0]
|
||||
url = None
|
||||
try:
|
||||
from cmdlet._shared import get_field
|
||||
from SYS.field_access import get_field
|
||||
|
||||
url = get_field(item, "url")
|
||||
except Exception:
|
||||
@@ -2043,7 +2043,7 @@ class PipelineExecutor:
|
||||
return False, None
|
||||
debug(f"@N: _maybe_run_class_selector returned False, continuing")
|
||||
|
||||
from cmdlet._shared import coerce_to_pipe_object
|
||||
from SYS.pipe_object import coerce_to_pipe_object
|
||||
|
||||
filtered_pipe_objs = [coerce_to_pipe_object(item) for item in filtered]
|
||||
piped_result = (
|
||||
@@ -2467,7 +2467,7 @@ class PipelineExecutor:
|
||||
last_items = None
|
||||
|
||||
if last_items:
|
||||
from cmdlet._shared import coerce_to_pipe_object
|
||||
from SYS.pipe_object import coerce_to_pipe_object
|
||||
|
||||
try:
|
||||
pipe_items = [
|
||||
@@ -2706,7 +2706,7 @@ class PipelineExecutor:
|
||||
if (next_cmd in {"delete-tag",
|
||||
"delete_tag"} and len(filtered) > 1
|
||||
and all(_is_tag_row(x) for x in filtered)):
|
||||
from cmdlet._shared import get_field
|
||||
from SYS.field_access import get_field
|
||||
|
||||
tags: List[str] = []
|
||||
first_hash = None
|
||||
@@ -2739,7 +2739,7 @@ class PipelineExecutor:
|
||||
piped_result = grouped
|
||||
continue
|
||||
|
||||
from cmdlet._shared import coerce_to_pipe_object
|
||||
from SYS.pipe_object import coerce_to_pipe_object
|
||||
|
||||
filtered_pipe_objs = [
|
||||
coerce_to_pipe_object(item) for item in filtered
|
||||
|
||||
Reference in New Issue
Block a user