Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
rhugonnet committed Apr 28, 2024
1 parent 920fb78 commit 61e88d2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion xdem/spatialstats.py
Original file line number Diff line number Diff line change
Expand Up @@ -1446,7 +1446,9 @@ def sample_empirical_variogram(
rng = np.random.default_rng(random_state)

# Create a list of child random states per number of variograms
list_random_state: list[None | np.random.Generator] = list(rng.choice(n_variograms, n_variograms, replace=False))
list_random_state: list[None | np.random.Generator] = list(
rng.choice(n_variograms, n_variograms, replace=False)
)
else:
list_random_state = [None for i in range(n_variograms)]

Expand Down

0 comments on commit 61e88d2

Please sign in to comment.