Skip to content

Commit

Permalink
remove a few unnecessary imports
Browse files Browse the repository at this point in the history
  • Loading branch information
schlegelp committed Jul 25, 2024
1 parent d799006 commit a9794cc
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 8 deletions.
1 change: 0 additions & 1 deletion navis/core/dotprop.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
import numbers
import pint
import types
import uuid
import warnings

import numpy as np
Expand Down
4 changes: 1 addition & 3 deletions navis/morpho/persistence.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@

"""Module to generate and analyze persistence diagrams."""

import os

import numpy as np
import pandas as pd

Expand All @@ -23,7 +21,7 @@

from scipy.spatial.distance import pdist, cdist, squareform
from scipy.stats import gaussian_kde
from typing import Union, Optional, Sequence, List, Dict, overload
from typing import Union, Optional
from typing_extensions import Literal

from .. import utils, config, core, graph
Expand Down
5 changes: 1 addition & 4 deletions navis/utils/misc.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.

import inspect
import math
import os
import requests
import sys
import urllib
Expand All @@ -22,13 +20,12 @@
import pandas as pd

from typing import Optional, Union, List, Iterable, Dict, Tuple, Any
from typing_extensions import Literal

from .. import config, core
from .eval import is_mesh
from .iterables import is_iterable, make_iterable
from ..transforms.templates import TemplateBrain


# Set up logging
logger = config.get_logger(__name__)

Expand Down

0 comments on commit a9794cc

Please sign in to comment.