Skip to content

Commit ee9147a

Browse files
committed
Fix linter errors: trailing whitespace and missing space after keyword
1 parent 92d8fbb commit ee9147a

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

azure/durable_functions/models/DurableOrchestrationContext.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ def call_http(self, method: str, uri: str, content: Optional[str] = None,
248248
The HTTP request uri.
249249
content: str or dict, optional
250250
The HTTP request content. Can be a string or a JSON-serializable dictionary.
251-
Note: Although the type hint says 'str', a dictionary is accepted
251+
Note: Although the type hint says 'str', a dictionary is accepted
252252
and will be serialized to JSON.
253253
headers: Optional[Dict[str, str]]
254254
The HTTP request headers.

azure/durable_functions/models/TaskOrchestrationExecutor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ def get_orchestrator_state_str(self) -> str:
276276
message contains in it the string representation of the orchestration's
277277
state
278278
"""
279-
if(self.output is not None):
279+
if (self.output is not None):
280280
try:
281281
# Attempt to serialize the output. If serialization fails, raise an
282282
# error indicating that the orchestration output is not serializable,

0 commit comments

Comments
 (0)