I've been browsing the Client code and I came across a line in base.py that stands out. ``` python self.async_mode = (async_mode is True or (defaults.ASYNC_MODE and async_mode is not False)) ``` I'm guessing this is the intended effect? ``` python self.async_mode = defaults.ASYNC_MODE if async_mode is None else async_mode ```
I've been browsing the Client code and I came across a line in base.py that stands out.
I'm guessing this is the intended effect?