ckoval7 / df-aggregator

Networked DFing software that can handle multiple DOA receivers.
GNU General Public License v3.0
84 stars 19 forks source link

Fix issue with `min_samp` becoming of `float` type #6

Closed godsic closed 1 year ago

godsic commented 1 year ago

It turns out round(x, 0) might return value of float type leading to TypeError: min_samples must be an instance of int, not float.. Let's take care of that and also guard user input for minimum of 3 samples. Thanks to @jhonnybonny for reporting.