Skip to content

Commit

Permalink
ci: Update pre-commit hooks
Browse files Browse the repository at this point in the history
  • Loading branch information
tefra committed Feb 29, 2024
1 parent 12e2ad6 commit 650120c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repos:
- id: end-of-file-fixer
- id: debug-statements
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.2.1
rev: v0.3.0
hooks:
- id: ruff
args: [ --fix, --show-fixes ]
Expand Down
2 changes: 1 addition & 1 deletion xsdata/utils/namespaces.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def local_name(qname: str) -> str:
return split_qname(qname)[1]


NCNAME_PUNCTUATION = {"\u00B7", "\u0387", ".", "-", "_"}
NCNAME_PUNCTUATION = {"\u00b7", "\u0387", ".", "-", "_"}


def is_ncname(name: Optional[str]) -> bool:
Expand Down

0 comments on commit 650120c

Please sign in to comment.