Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix weird auto-formatting of imports
Browse files Browse the repository at this point in the history
ntessore committed Jan 2, 2024

Verified

This commit was signed with the committer’s verified signature.
ntessore Nicolas Tessore
1 parent d9e5557 commit e207795
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions heracles/twopoint.py
Original file line number Diff line number Diff line change
@@ -25,7 +25,12 @@
from contextlib import nullcontext
from datetime import timedelta
from itertools import combinations_with_replacement, product
from typing import TYPE_CHECKING
from typing import TYPE_CHECKING, Any

import healpy as hp
import numpy as np

from .core import TocDict, toc_match, update_metadata

if TYPE_CHECKING:
from collections.abc import Mapping, MutableMapping
@@ -35,13 +40,6 @@
from .fields import Field
from .progress import Progress

from typing import Any

import healpy as hp
import numpy as np

from .core import TocDict, toc_match, update_metadata

# type alias for the keys of two-point data
TwoPointKey = tuple[Any, Any, Any, Any]

0 comments on commit e207795

Please sign in to comment.