Skip to content

Commit

Permalink
Correcting self import for py3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
BryanFauble committed Feb 13, 2025
1 parent 997b036 commit f5a5970
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion synapseclient/models/mixins/asynchronous_job.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
import time
from dataclasses import dataclass
from enum import Enum
from typing import Any, Dict, Optional, Self
from typing import Any, Dict, Optional

from typing_extensions import Self

from synapseclient import Synapse
from synapseclient.core.constants.concrete_types import (
Expand Down
3 changes: 2 additions & 1 deletion synapseclient/models/table.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,11 @@
from datetime import date, datetime
from enum import Enum
from io import BytesIO
from typing import Any, Dict, List, Optional, Self, Union
from typing import Any, Dict, List, Optional, Union

import pandas as pd
from pandas.api.types import infer_dtype
from typing_extensions import Self

from synapseclient import Column as Synapse_Column
from synapseclient import Synapse
Expand Down

0 comments on commit f5a5970

Please sign in to comment.