second commit
This commit is contained in:
14
env/lib/python3.11/site-packages/mdurl/_url.py
vendored
Normal file
14
env/lib/python3.11/site-packages/mdurl/_url.py
vendored
Normal file
@ -0,0 +1,14 @@
|
||||
from __future__ import annotations
|
||||
|
||||
from typing import NamedTuple
|
||||
|
||||
|
||||
class URL(NamedTuple):
|
||||
protocol: str | None
|
||||
slashes: bool
|
||||
auth: str | None
|
||||
port: str | None
|
||||
hostname: str | None
|
||||
hash: str | None # noqa: A003
|
||||
search: str | None
|
||||
pathname: str | None
|
Reference in New Issue
Block a user