Skip to content

Commit

Permalink
[pre-commit.ci] pre-commit autoupdate (#507)
Browse files Browse the repository at this point in the history
* [pre-commit.ci] pre-commit autoupdate

updates:
- [github.com/astral-sh/ruff-pre-commit: v0.1.3 → v0.1.4](astral-sh/ruff-pre-commit@v0.1.3...v0.1.4)

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
pre-commit-ci[bot] authored Nov 6, 2023
1 parent 4d80193 commit 8bd4a68
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
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

0 comments on commit 8bd4a68

Please sign in to comment.