Skip to content

Commit

Permalink
pep8 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sk1p committed Sep 21, 2024
1 parent e477e40 commit 8116990
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/libertem_blobfinder/udf/integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ def __init__(self, centers, pattern):
>>> peaks_shape = nav_shape + extra_shape
>>> # Generate some random positions as an example
>>> peaks = np.random.randint(low=0, high=np.min(sig_shape), size=peaks_shape, dtype=np.int64)
>>> peaks = np.random.randint(
... low=0, high=np.min(sig_shape), size=peaks_shape, dtype=np.int64
... )
>>> # Create an AuxBufferWrapper for the peaks
>>> centers = IntegrationUDF.aux_data(
Expand Down

0 comments on commit 8116990

Please sign in to comment.