Skip to content

Commit

Permalink
python formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Wumpf committed Oct 16, 2023
1 parent 18bf6c3 commit 2e462b7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rerun_py/rerun_sdk/rerun/_image.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import io
import pathlib
from typing import IO, Iterable, Tuple
from typing import IO, Iterable

import numpy as np
from PIL import Image as PILImage
Expand Down Expand Up @@ -38,9 +38,9 @@ class NV12(ImageFormat):
"""NV12 format."""

name = "NV12"
size_hint: Tuple[int, int]
size_hint: tuple[int, int]

def __init__(self, size_hint: Tuple[int, int]) -> None:
def __init__(self, size_hint: tuple[int, int]) -> None:
"""
An NV12 encoded image.
Expand Down

0 comments on commit 2e462b7

Please sign in to comment.