Skip to content

Commit 08a9dcb

Browse files
committed
chore(pyi): changing SearchType to int
1 parent 7c4db12 commit 08a9dcb

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Cargo.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.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rxml"
3-
version = "2.1.2"
3+
version = "2.1.3"
44
edition = "2021"
55

66
[lib]

rxml.pyi

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
from enum import Enum
22

33
class SearchType(Enum):
4-
Tag: str
5-
Attr: str
6-
Text: str
4+
Tag: int
5+
Attr: int
6+
Text: int
77

88
class Node:
99
name: str

0 commit comments

Comments
 (0)