diff options
| author | Peter LaFosse <peter@vector35.com> | 2021-06-24 09:19:08 -0400 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2021-09-05 10:08:09 -0400 |
| commit | d37f7abfe4c1b23426b0fbdc85ae31788602ff28 (patch) | |
| tree | ff106d8d52afc7cb4d85a1378a41e5c72a288c7d /python/settings.py | |
| parent | e0389d244e6211126267e060a9c61a1e75481b76 (diff) | |
Don't inherit from object anymore
Diffstat (limited to 'python/settings.py')
| -rw-r--r-- | python/settings.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/settings.py b/python/settings.py index ac968d3e..b508e863 100644 --- a/python/settings.py +++ b/python/settings.py @@ -25,7 +25,7 @@ from . import _binaryninjacore as core from .enums import SettingsScope -class Settings(object): +class Settings: """ :class:`Settings` provides a way to define and access settings in a hierarchical fashion. The value of a setting can \ be defined for each hierarchical level, where each level overrides the preceding level. The backing-store for setting \ |
