Skip to content

Commit c372bb0

Browse files
committed
Fix return type inconsistency
1 parent cc0f666 commit c372bb0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/azul/service/source_service.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,10 +161,10 @@ def configured_public_sources(self) -> Iterable[SourceRef]:
161161
authentication=None))
162162
return public_sources
163163
else:
164-
return [
164+
return {
165165
SourceRef.from_json(source)
166166
for source in json_element_mappings(public_sources)
167-
]
167+
}
168168

169169
@property
170170
def configured_public_sources_for_outsourcing(self) -> JSONs:

0 commit comments

Comments
 (0)