Skip to content

Commit dc3c2bb

Browse files
committed
fix: renamed headers_list to headers_dict
1 parent 90a63ce commit dc3c2bb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

restler/engine/transport_layer/response.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def headers(self) -> str:
4545
pass
4646

4747
@abstractproperty
48-
def headers_list(self) -> Dict:
48+
def headers_dict(self) -> Dict:
4949
pass
5050

5151
@abstractmethod
@@ -94,7 +94,7 @@ def headers(self) -> str:
9494
return header_str
9595

9696
@property
97-
def headers_list(self) -> Dict:
97+
def headers_dict(self) -> Dict:
9898
h_dict = dict()
9999
for k, v in self._response.headers.iter_raw():
100100
h_dict[k] = v

0 commit comments

Comments
 (0)