fix linting

This commit is contained in:
Samuel Colvin
2020-10-09 13:14:53 +01:00
parent 130c9903d7
commit fd3f2b0f55
+6 -1
View File
@@ -69,6 +69,11 @@ def parse_raw_as(
type_name: Optional[NameFactory] = None,
) -> T:
obj = load_str_bytes(
b, proto=proto, content_type=content_type, encoding=encoding, allow_pickle=allow_pickle, json_loads=json_loads,
b,
proto=proto,
content_type=content_type,
encoding=encoding,
allow_pickle=allow_pickle,
json_loads=json_loads,
)
return parse_obj_as(type_, obj, type_name=type_name)