Skip to content

Commit

Permalink
add imports for 3.9 version
Browse files Browse the repository at this point in the history
  • Loading branch information
selmanozleyen committed May 16, 2024
1 parent 97fe0d6 commit 77fbb35
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/geome/iterables/base/to_iterable.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from __future__ import annotations

from abc import ABC, abstractmethod
from collections.abc import Iterable

Expand Down
2 changes: 2 additions & 0 deletions src/geome/iterables/to_category_iterator.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from __future__ import annotations

from collections.abc import Iterator
from dataclasses import dataclass
from typing import Literal
Expand Down
2 changes: 2 additions & 0 deletions src/geome/transforms/add_adj_matrix.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from __future__ import annotations

from dataclasses import dataclass, field

import squidpy as sq
Expand Down
2 changes: 2 additions & 0 deletions src/geome/transforms/add_design_matrix.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from __future__ import annotations

from dataclasses import dataclass

import numpy as np
Expand Down
2 changes: 2 additions & 0 deletions src/geome/transforms/add_edge_index.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from __future__ import annotations

from dataclasses import dataclass

import scipy.sparse as sp
Expand Down
2 changes: 2 additions & 0 deletions src/geome/transforms/categorize.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from __future__ import annotations

from dataclasses import dataclass
from typing import Literal

Expand Down

0 comments on commit 77fbb35

Please sign in to comment.