Skip to content

Commit

Permalink
Fixes a pytype issue.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 399305352
  • Loading branch information
chaene authored and copybara-github committed Sep 27, 2021
1 parent 0dbe246 commit 6cde0ce
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def get_noise_dimensions(
return noise_dimensions


def _create_noise_inputs(num_upsampling_blocks: int) -> List[tf.keras.Input]: # pytype: disable=invalid-annotation # typed-keras
def _create_noise_inputs(num_upsampling_blocks: int) -> List[tf.Tensor]:
"""Creates the noise input layers."""
noise_dimensions = get_noise_dimensions(num_upsampling_blocks)
noise_inputs = [
Expand Down

0 comments on commit 6cde0ce

Please sign in to comment.