Skip to content

Commit

Permalink
Remove quotes around return types of methods.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 659951534
  • Loading branch information
schwehr authored and Google Earth Engine Authors committed Aug 6, 2024
1 parent 56b2004 commit b9b6dc7
Show file tree
Hide file tree
Showing 5 changed files with 223 additions and 223 deletions.
2 changes: 1 addition & 1 deletion python/ee/dictionary.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ def contains(self, key: _StringType) -> computedobject.ComputedObject:

# TODO: keys should be a _StringListType.
@staticmethod
def fromLists(keys: _ListType, values: _ListType) -> 'Dictionary':
def fromLists(keys: _ListType, values: _ListType) -> Dictionary:
"""Returns a dictionary from two parallel lists of keys and values.
Args:
Expand Down
Loading

0 comments on commit b9b6dc7

Please sign in to comment.