See sentry issue https://sentry.io/organizations/posthog/issues/2220836956/?project=1899813. If a feature flag is enabled for everyone without a % rollout, the client crashes. Notice that this is different from a 100% rollout which works fine. ``` unsupported operand type(s) for /: 'NoneType' and 'int' ``` posthoganalytics/client.py#L276 ```python response = _hash(key, distinct_id) <= (feature_flag['rollout_percentage'] / 100) ```