Skip to content

Commit

Permalink
fixup! Fix ORM class inheritance hierarchy
Browse files Browse the repository at this point in the history
  • Loading branch information
cmutel committed Nov 8, 2024
1 parent 29d615a commit 209475a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion bw2data/project.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from copy import copy
from functools import partial
from pathlib import Path
from typing import Any, Optional, Sequence, TypeVar
from typing import TYPE_CHECKING, Any, Optional, Sequence

import wrapt
from bw_processing import safe_filename
Expand All @@ -23,6 +23,10 @@
from bw2data.utils import maybe_path


if TYPE_CHECKING:
from bw2data import revisions


READ_ONLY_PROJECT = """
***Read only project***
Expand Down

0 comments on commit 209475a

Please sign in to comment.