Skip to content

Commit

Permalink
Revert unnecessary change to MAX_NUMBER_OF_POINTS
Browse files Browse the repository at this point in the history
The type was already an int.
  • Loading branch information
danesss committed Aug 30, 2023
1 parent c69bd35 commit dad6f50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/plot3dUpdateScatterFromThread.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
from silx.gui.plot3d import items


MAX_NUMBER_OF_POINTS = int(10**6)
MAX_NUMBER_OF_POINTS = 10**6


class UpdateScatterThread(threading.Thread):
Expand Down

0 comments on commit dad6f50

Please sign in to comment.