Skip to content

Commit da3c95d

Browse files
author
Alan Christie
committed
style: Format fix
1 parent fa3c25e commit da3c95d

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

decoder/decoder.py

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -329,15 +329,13 @@ def get_jobs_replaced(job_definition: Dict[str, Any]) -> Optional[List[str]]:
329329

330330

331331
def get_outputs(job_definition: Dict[str, Any]) -> Optional[Dict[str, Any]]:
332-
"""Given a Job Definition this function returns the outputs declared.
333-
"""
334-
return job_definition.get('variables', {}).get('outputs', {}).get('properties', {})
332+
"""Given a Job Definition this function returns the outputs declared."""
333+
return job_definition.get("variables", {}).get("outputs", {}).get("properties", {})
335334

336335

337336
def get_inputs(job_definition: Dict[str, Any]) -> Optional[Dict[str, Any]]:
338-
"""Given a Job Definition this function returns the inputs declared.
339-
"""
340-
return job_definition.get('variables', {}).get('inputs', {}).get('properties', {})
337+
"""Given a Job Definition this function returns the inputs declared."""
338+
return job_definition.get("variables", {}).get("inputs", {}).get("properties", {})
341339

342340

343341
def decode(

0 commit comments

Comments
 (0)