Skip to content

Commit da54965

Browse files
committed
Import ConnectionProfile to sdbus_async.networkmanager.settings
1 parent 7b900c8 commit da54965

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

sdbus_async/networkmanager/settings/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
# if possible, please make changes by also updating the script.
44
from __future__ import annotations
55

6+
from .profile import ConnectionProfile
67
from .adsl import AdslSettings
78
from .bluetooth import BluetoothSettings
89
from .bond import BondSettings
@@ -58,6 +59,7 @@
5859

5960

6061
__all__ = (
62+
'ConnectionProfile',
6163
'AdslSettings',
6264
'BluetoothSettings',
6365
'BondSettings',

tools/jinja_templates/__init__.py.jinja2

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,13 @@
33
# if possible, please make changes by also updating the script.
44
from __future__ import annotations
55

6+
from .profile import ConnectionProfile
67
{% for setting in all_settings -%}
78
from .{{ 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 %}

0 commit comments

Comments
 (0)