Skip to content

Commit

Permalink
Fixed typing error for > Python 3.11 (#240)
Browse files Browse the repository at this point in the history
  • Loading branch information
coderabhigupta authored Jan 16, 2024
1 parent 3a1ed51 commit d05d824
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/conductor/client/http/models/state_change_event.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from enum import Enum
from typing import Self, Union, List
from typing import Union, List
from typing_extensions import Self


class StateChangeEventType(Enum):
Expand Down
2 changes: 1 addition & 1 deletion src/conductor/client/http/models/workflow_task.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import pprint
import re # noqa: F401
from typing import List, Union, Self
from typing import List

import six

Expand Down

0 comments on commit d05d824

Please sign in to comment.