Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Apr 21, 2023
1 parent 48c0cb2 commit 2d504ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rfc3986/abnf_regexp.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
_AUTHORITY_RE = "[^\\\\/?#]*"
_PATH_RE = "[^?#]*"
_QUERY_RE = "[^#]*"
_FRAGMENT_RE = "[\S\s]*"
_FRAGMENT_RE = r"[\S\s]*"

# Extracted from http://tools.ietf.org/html/rfc3986#appendix-B
COMPONENT_PATTERN_DICT = {
Expand Down

0 comments on commit 2d504ff

Please sign in to comment.