Skip to content

Commit

Permalink
Remove newly unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
obackhouse committed Aug 9, 2024
1 parent c343ed9 commit 32ff586
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion ebcc/eom/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from ebcc.core.precision import types

if TYPE_CHECKING:
from typing import Any, Callable, Optional, Union
from typing import Any, Callable, Optional

from ebcc.cc.base import BaseEBCC, ERIsInputType, SpaceType, SpinArrayType
from ebcc.core.ansatz import Ansatz
Expand Down
3 changes: 1 addition & 2 deletions ebcc/eom/geom.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,11 @@

from __future__ import annotations

import warnings
from typing import TYPE_CHECKING

from ebcc import numpy as np
from ebcc import util
from ebcc.core.precision import astype, types
from ebcc.core.precision import astype
from ebcc.eom.base import BaseEA_EOM, BaseEE_EOM, BaseEOM, BaseIP_EOM

if TYPE_CHECKING:
Expand Down
3 changes: 1 addition & 2 deletions ebcc/eom/reom.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,11 @@

from __future__ import annotations

import warnings
from typing import TYPE_CHECKING

from ebcc import numpy as np
from ebcc import util
from ebcc.core.precision import astype, types
from ebcc.core.precision import astype
from ebcc.eom.base import BaseEA_EOM, BaseEE_EOM, BaseEOM, BaseIP_EOM

if TYPE_CHECKING:
Expand Down
2 changes: 1 addition & 1 deletion ebcc/eom/ueom.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

from ebcc import numpy as np
from ebcc import util
from ebcc.core.precision import astype, types
from ebcc.core.precision import astype
from ebcc.eom.base import BaseEA_EOM, BaseEE_EOM, BaseEOM, BaseIP_EOM

if TYPE_CHECKING:
Expand Down

0 comments on commit 32ff586

Please sign in to comment.