Skip to content

Commit 72ffc1e

Browse files
committed
fix: typing issue and version bump
1 parent fd99ee2 commit 72ffc1e

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "uipath"
3-
version = "2.6.22"
3+
version = "2.6.23"
44
description = "Python SDK and CLI for UiPath Platform, enabling programmatic interaction with automation services, process management, and deployment tools."
55
readme = { file = "README.md", content-type = "text/markdown" }
66
requires-python = ">=3.11"

src/uipath/_cli/_utils/_eval_set.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import json
22
from pathlib import Path
3+
from typing import Any
34

45
import click
56
from pydantic import ValidationError
@@ -19,7 +20,7 @@
1920
EVAL_SETS_DIRECTORY_NAME = "evaluations/eval-sets"
2021

2122

22-
def discriminate_eval_set(data: dict) -> EvaluationSet | LegacyEvaluationSet:
23+
def discriminate_eval_set(data: dict[str, Any]) -> EvaluationSet | LegacyEvaluationSet:
2324
"""Discriminate and parse evaluation set based on version field.
2425
2526
Uses explicit version checking instead of Pydantic's smart union matching

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)