Skip to content

Commit c31b006

Browse files
committed
Move azure.worker to azure.functions_worker
Fixes: #140
1 parent 533e946 commit c31b006

39 files changed

+34
-31
lines changed

.flake8

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
ignore = W503,E402,E731
33
exclude =
44
.git, __pycache__, build, dist, .eggs, .github, .local,
5-
Samples, azure/worker/protos/, docs/
5+
Samples, azure/functions_worker/protos/, docs/

azure/functions/_cosmosdb.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def from_json(cls, json_data: str) -> 'Document':
2323
def from_dict(cls, dct: dict) -> 'Document':
2424
"""Create a Document from a dict object."""
2525
filtered = {k: v for k, v in dct.items() if k not in _SYSTEM_KEYS}
26-
return cls(filtered) # type: ignore
26+
return cls(filtered)
2727

2828
def to_json(self) -> str:
2929
"""Return the JSON representation of the document."""
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)