Andrushika commented on code in PR #70993:
URL: https://github.com/apache/airflow/pull/70993#discussion_r3815236516
##########
ts-sdk/src/cli/pack.ts:
##########
@@ -193,7 +194,7 @@ function isBundleManifest(value: unknown): value is
BundleManifest {
}
function isTaskIdList(value: unknown): value is string[] {
- return Array.isArray(value) && value.every((item) => typeof item ===
"string" && item.length > 0);
+ return Array.isArray(value) && value.every((item) => typeof item ===
"string");
Review Comment:
Fixed. Thanks!
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]