File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
sdbus_async/networkmanager/settings Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change 33# if possible, please make changes by also updating the script.
44from __future__ import annotations
55
6+ from .profile import ConnectionProfile
67from .adsl import AdslSettings
78from .bluetooth import BluetoothSettings
89from .bond import BondSettings
5859
5960
6061__all__ = (
62+ 'ConnectionProfile' ,
6163 'AdslSettings' ,
6264 'BluetoothSettings' ,
6365 'BondSettings' ,
Original file line number Diff line number Diff line change 33# if possible, please make changes by also updating the script.
44from __future__ import annotations
55
6+ from .profile import ConnectionProfile
67{% for setting in all_settings -%}
78from .{{ setting.snake_name }} import {{ setting.python_class_name }}
89{% endfor %}
910
1011__all__ = (
12+ 'ConnectionProfile',
1113{% - for setting in all_settings %}
1214 '{{ setting.python_class_name }}',
1315{% - endfor %}
You can’t perform that action at this time.
0 commit comments