Skip to content

Commit

Permalink
chore(pyi): changing SearchType to int
Browse files Browse the repository at this point in the history
  • Loading branch information
nephi-dev committed Dec 18, 2024
1 parent 7c4db12 commit 08a9dcb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rxml"
version = "2.1.2"
version = "2.1.3"
edition = "2021"

[lib]
Expand Down
6 changes: 3 additions & 3 deletions rxml.pyi
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 08a9dcb

Please sign in to comment.