Skip to content

Commit

Permalink
Optional[list[str]] valid only for python3.9+, hence the tests fail
Browse files Browse the repository at this point in the history
  • Loading branch information
umoothiringote committed Oct 17, 2023
1 parent 8da1422 commit 948bbaf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/git.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import logging
import subprocess as sp
from typing import Optional
from typing import Optional, List
import os

from sisyphus import *
Expand All @@ -24,7 +24,7 @@ def __init__(
commit: Optional[str] = None,
checkout_folder_name: str = "repository",
clone_submodules: bool = False,
files_to_checkout: Optional[list[str]] = None,
files_to_checkout: Optional[List[str]] = None,
):
"""
Expand Down

0 comments on commit 948bbaf

Please sign in to comment.