You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remove unused and undocumented setGa method (#163)
Storing a ga globally like this isn't a good idea.
Additionally, it's very confusing that both `some_dop.ga` and `some_dop.Ga` exist, but the former is always `None`.
If anyone was actually using this, they can always use
```python
import functools
Pdop = functools.partial(Pdop, ga=my_ga)
Sdop = functools.partial(Sdop, ga=my_ga)
Dop = functools.partial(Dop, ga=my_ga)
```
0 commit comments