Skip to content

Commit fef6ab4

Browse files
author
Two Dev
committed
Bugs: #19 - fix url params
1 parent d3da3e7 commit fef6ab4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tls_requests/models/urls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def __init__(self, params: URLParamTypes = None, **kwargs):
5353

5454
@property
5555
def params(self) -> str:
56-
return quote(str(self))
56+
return str(self)
5757

5858
def update(self, params: URLParamTypes = None, **kwargs):
5959
self._data.update(self._prepare(params, **kwargs))

0 commit comments

Comments
 (0)