Skip to content

Commit

Permalink
python 3.9 compat
Browse files Browse the repository at this point in the history
  • Loading branch information
leoschwarz committed Jul 19, 2024
1 parent 8156505 commit 0f6cc64
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions bfabric/entities/core/entity.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
from __future__ import annotations

from typing import Any, Self

from loguru import logger

from bfabric import Bfabric
from typing import TYPE_CHECKING

if TYPE_CHECKING:
from typing import Any, Self


class Entity:
Expand Down

0 comments on commit 0f6cc64

Please sign in to comment.