Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Nov 20, 2023
1 parent 6b66c54 commit 9bdbc88
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/geovista/bridge.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@

import warnings

from numpy import ma
import numpy as np
from numpy import ma
from numpy.typing import ArrayLike
from pyproj import CRS
import pyvista as pv
Expand Down
4 changes: 2 additions & 2 deletions src/geovista/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
import sys
from typing import Any

from numpy import ma
import numpy as np
from numpy import ma
from numpy.typing import ArrayLike
from pyvista import _vtk
import pyvista as pv
from pyvista import _vtk
from pyvista.core.filters import _get_output
from vtk import vtkLogger, vtkObject

Expand Down
2 changes: 1 addition & 1 deletion src/geovista/filters.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
from __future__ import annotations

import numpy as np
from pyvista import _vtk
import pyvista as pv
from pyvista import _vtk
from pyvista.core.filters import _get_output

from .common import (
Expand Down
2 changes: 1 addition & 1 deletion src/geovista/pantry.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
from functools import lru_cache

import netCDF4 as nc
from numpy import ma
import numpy as np
from numpy import ma
from numpy.typing import ArrayLike
import pooch

Expand Down

0 comments on commit 9bdbc88

Please sign in to comment.