return self._handle_method_error(error) File "/usr/lib/python3.6/site-packages/dasbus/client/handler.py",line 497, in handle_method _error raise exception from None dasbus.error.DBusError: argument of type 'NoneType' is not iterable
ALICE (Automated Learning and Intelligence for Causation and Economics) is a Microsoft Research project aimed at applying Artificial Intelligence concepts to economic decision making. One of its goals is to build a toolkit that combines state-of-the-art
(int, int) Possible types: (int, None) (slice, Iterable[None]) The warning goes away if I change the first line top = [None, None, None, None] Does anyone have an idea why this is happening? Thanks! Hi, We only support it for literals: [None, None, ...] -- ...
<int> = <str>.find() # Returns start index of first match or -1. <int> = <str>.index() # Same but raises ValueError. <str> = <str>.replace(old, new [, count]) # Replaces 'old' with 'new' at most 'count' times. <bool> = <str>.isnumeric() # True if str contains o...
n_samples_subsample : int The total number of samples to draw for the subsample. """ if max_samples is None: return n_samples if isinstance(max_samples, numbers.Integral): if not (1 <= max_samples <= n_samples): msg = "`max_samples` must be in range 1 to {} but got value ...