Skip to content

Commit

Permalink
🐛 Updated usage of Port enum
Browse files Browse the repository at this point in the history
  • Loading branch information
VolodymyrBor committed Dec 1, 2022
1 parent 6cb33a8 commit e0930fc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ from urlx import Url, Protocol, Port
url = Url(
protocol=Protocol.HTTPS,
host='localhost',
port=Port.HTTPS,
port=Port.HTTPS_443,
path=Path('api/user-list'),
query={
'limit': '100',
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ from urlx import Url, Protocol, Port
url = Url(
protocol=Protocol.HTTPS,
host='localhost',
port=Port.HTTPS,
port=Port.HTTPS_443,
path=Path('api/user-list'),
query={
'limit': '100',
Expand Down
2 changes: 1 addition & 1 deletion urlx/url.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ def __repr__(self) -> str:
url = Url(
protocol=Protocol.HTTPS,
host='localhost',
port=Port.HTTPS,
port=Port.HTTPS_443,
path=Path('api/user-list'),
query={
'limit': '100',
Expand Down

0 comments on commit e0930fc

Please sign in to comment.