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
All meta-data is defined in the header, you need at least one option at ``__config__`` so the user can toggle your
29
+
All meta-data is defined in the header, you need at least one option at ``__config`` so the user can toggle your
30
30
addon on and off. Dont't overwrite the ``init`` method if not neccesary, use ``setup`` instead.
31
31
32
32
Using the Config
33
33
----------------
34
34
35
-
We are taking a closer look at the ``__config__`` parameter.
35
+
We are taking a closer look at the ``__config`` parameter.
36
36
You can add more config values as desired by adding tuples of the following format to the config list: ``("name", "type", "description", "default value")``.
37
37
When everything went right you can access the config values with ``self.getConfig(name)`` and ``self.setConfig(name, value``.
0 commit comments