Skip to content

Commit 28ec20e

Browse files
committed
Add type annotations to the majority of variables and functions in Service V2
Before developing the Service V4 I wanted to fully understand how V2 works, however without data types it was nearly impossible to grasp the meaning of the code. Hence, this commit.
1 parent 2e0d451 commit 28ec20e

File tree

3 files changed

+192
-175
lines changed

3 files changed

+192
-175
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
2020
- Permissive parsing for TypeDefinition
2121
- Changes all manually raised exception to be child of PyODataException - Martin Miksik
2222
- More comprehensive tests for ODATA V4 - Martin Miksik
23+
- Majority of variables and functions in Service V2 are now type annotated - Martin Miksik
2324

2425
### Changed
2526
- Implementation and naming schema of `from_etree` - Martin Miksik

pyodata/exceptions.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""PyOData exceptions hierarchy"""
2+
import requests
23

34

45
class PyODataException(Exception):
@@ -25,13 +26,13 @@ class HttpError(PyODataException):
2526

2627
VendorType = None
2728

28-
def __new__(cls, message, response):
29+
def __new__(cls, message: str, response: requests.Response) -> 'HttpError':
2930
if HttpError.VendorType is not None:
3031
return super(HttpError, cls).__new__(HttpError.VendorType, message, response)
3132

32-
return super(HttpError, cls).__new__(cls, message, response)
33+
return super(HttpError, cls).__new__(cls, message, response) # type: ignore
3334

34-
def __init__(self, message, response):
35+
def __init__(self, message: str, response: requests.Response) -> None:
3536
super(HttpError, self).__init__(message)
3637

3738
self.response = response

0 commit comments

Comments
 (0)