Skip to content

Commit

Permalink
[dev-] fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
saulpw committed Oct 26, 2023
1 parent e3fc79e commit 7406f04
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions visidata/menu.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import textwrap
import curses

from typing import Union
from typing import List, Union
from visidata import vd, drawcache, colors, clipdraw, dispwidth
from visidata import BaseSheet, VisiData, AttrDict, ENTER

Expand Down Expand Up @@ -53,7 +53,7 @@ def _finditem(menus, item:Union[str,int]):


@BaseSheet.api
def getMenuItem(sheet, menupath:list[str]=None):
def getMenuItem(sheet, menupath:List[str]=None):
if not menupath:
menupath = sheet.activeMenuItems

Expand Down

0 comments on commit 7406f04

Please sign in to comment.