Skip to content

Commit

Permalink
Use typing.List instead of list
Browse files Browse the repository at this point in the history
  • Loading branch information
wkentaro committed Jan 7, 2024
1 parent 25c1b9f commit 62dfbc5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions imshow/plugins/tile.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import itertools
import os
from typing import List

import imgviz
import numpy as np
Expand Down Expand Up @@ -53,9 +54,9 @@ def add_arguments(parser):

row: int
col: int
padding_color: list[int]
padding_color: List[int]
border_width: int
border_color: list[int]
border_color: List[int]

def __init__(self, args):
super().__init__(args=args)
Expand Down

0 comments on commit 62dfbc5

Please sign in to comment.