Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
KMSCAKKSCFKA AKFACAMADCAS
tensorflow-federated
Commits
71a47e78
Commit
71a47e78
authored
Nov 29, 2022
by
Michael Reneer
Committed by
tensorflow-copybara
Nov 29, 2022
Browse files
Fix iterable warning.
PiperOrigin-RevId: 491693446
parent
0264e58d
Changes
1
Hide whitespace changes
Inline
Side-by-side
tensorflow_federated/python/program/file_release_manager.py
View file @
71a47e78
...
...
@@ -160,6 +160,7 @@ class CSVFileReleaseManager(release_manager.ReleaseManager):
for
fieldname
in
fieldnames
:
py_typecheck
.
check_type
(
fieldname
,
str
)
py_typecheck
.
check_type
(
values
,
Iterable
)
values
=
tuple
(
values
)
for
value
in
values
:
py_typecheck
.
check_type
(
value
,
Mapping
)
for
key
in
value
.
keys
():
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment