From 08a9dcb684a564daf2c7da4075c90a37d80cf497 Mon Sep 17 00:00:00 2001 From: Matheus Mendes Date: Wed, 18 Dec 2024 10:50:52 -0300 Subject: [PATCH] chore(pyi): changing SearchType to int --- Cargo.lock | 2 +- Cargo.toml | 2 +- rxml.pyi | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2c1daf6..f8ea968 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -151,7 +151,7 @@ dependencies = [ [[package]] name = "rxml" -version = "2.1.2" +version = "2.1.3" dependencies = [ "pyo3", "quick-xml", diff --git a/Cargo.toml b/Cargo.toml index 496f49b..8455d5f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rxml" -version = "2.1.2" +version = "2.1.3" edition = "2021" [lib] diff --git a/rxml.pyi b/rxml.pyi index ac8db49..4f2cbb6 100644 --- a/rxml.pyi +++ b/rxml.pyi @@ -1,9 +1,9 @@ from enum import Enum class SearchType(Enum): - Tag: str - Attr: str - Text: str + Tag: int + Attr: int + Text: int class Node: name: str