Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pre-commit.ci] pre-commit autoupdate #507

Merged
merged 2 commits into from
Nov 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ repos:
- id: trailing-whitespace

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: "v0.1.3"
rev: "v0.1.4"
hooks:
- id: ruff
types: [file, python]
Expand Down
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

import numpy as np
from numpy import ma
import numpy as np
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

import numpy as np
from numpy import ma
import numpy as np
from numpy.typing import ArrayLike
import pyvista as pv
from pyvista import _vtk
import pyvista as pv
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
import pyvista as pv
from pyvista import _vtk
import pyvista as pv
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
import numpy as np
from numpy import ma
import numpy as np
from numpy.typing import ArrayLike
import pooch

Expand Down
Loading