Skip to content

Commit e804239

Browse files
Chris HooksChris Hooks
authored andcommitted
Same fix as previous but for remote_lrs
1 parent 706b898 commit e804239

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tincan/remote_lrs.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,9 @@ def _send_request(self, request):
8686
"""Establishes connection and returns http response based off of request.
8787
8888
:param request: HTTPRequest object
89-
:type request: :mod:`tincan.http_request.HTTPRequest`
89+
:type request: :class:`tincan.http_request.HTTPRequest`
9090
:returns: LRS Response object
91-
:rtype: :mod:`tincan.lrs_response.LRSResponse`
91+
:rtype: :class:`tincan.lrs_response.LRSResponse`
9292
"""
9393
headers = {"X-Experience-API-Version": self.version}
9494

@@ -864,7 +864,7 @@ def get_endpoint_server_root(self):
864864
"""Parses RemoteLRS object's endpoint and returns its root
865865
866866
:return: Root of the RemoteLRS object endpoint
867-
:rtype: str
867+
:rtype: unicode
868868
"""
869869
parsed = urlparse(self._endpoint)
870870
root = parsed.scheme + "://" + parsed.hostname

0 commit comments

Comments
 (0)