Skip to content

Commit cb237fe

Browse files
committed
apply black
1 parent ac8e697 commit cb237fe

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

examples/05_kriging_1D.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
55
An example of 1D kriging with PyKrige
66
"""
7+
78
import matplotlib.pyplot as plt
89
import numpy as np
910

examples/06_exact_values_example_1D.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
============
55
66
PyKrige demonstration and usage
7-
as a non-exact interpolator in 1D.
7+
as a non-exact interpolator in 1D.
88
"""
99

1010
import matplotlib.pyplot as plt

src/pykrige/core.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -711,11 +711,11 @@ def _krige(
711711
d = great_circle_distance(x1, y1, x2, y2)
712712
bd = np.asarray(
713713
great_circle_distance(
714-
X[:, 0],
715-
X[:, 1],
716-
coords[0] * np.ones(X.shape[0]),
717-
coords[1] * np.ones(X.shape[0]),
718-
)
714+
X[:, 0],
715+
X[:, 1],
716+
coords[0] * np.ones(X.shape[0]),
717+
coords[1] * np.ones(X.shape[0]),
718+
)
719719
).ravel()
720720

721721
# this check is done when initializing variogram, but kept here anyways...

tests/test_core.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
Testing code.
33
Updated BSM February 2017
44
"""
5+
56
import os
67
import sys
78

0 commit comments

Comments
 (0)