Skip to content

Commit

Permalink
Resolve a circular import error in obscure configuarations.
Browse files Browse the repository at this point in the history
Signed-off-by: Jared Hance <[email protected]>
  • Loading branch information
jhance committed Jan 12, 2025
1 parent a9237b4 commit a2f2fb2
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/memray/_metadata.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
from __future__ import annotations

import typing

from dataclasses import dataclass
from datetime import datetime

from ._memray import FileFormat
if typing.TYPE_CHECKING:
from ._memray import FileFormat


@dataclass
Expand Down

0 comments on commit a2f2fb2

Please sign in to comment.