Skip to content

Commit

Permalink
Compute: pre 3.9 doesn't support typing (#12347)
Browse files Browse the repository at this point in the history
GitOrigin-RevId: 865c8127bc97a8962b2ba0d63d017dd986f9dc44
  • Loading branch information
tkrause authored and Descartes Labs Build committed Dec 4, 2023
1 parent 3a9db9d commit a63e98f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions descarteslabs/core/compute/function.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
import uuid
import warnings
import zipfile
from collections import UserList
from datetime import datetime
from tempfile import NamedTemporaryFile
from typing import (
Expand Down Expand Up @@ -146,7 +145,7 @@ def __repr__(self):
)


class JobBulkCreateResult(UserList[Job]):
class JobBulkCreateResult(List[Job]):
"""The result of a bulk job submission."""

def __init__(self):
Expand Down

0 comments on commit a63e98f

Please sign in to comment.