We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 658aad3 commit 753a2a9Copy full SHA for 753a2a9
services/ske/src/stackit/ske/configuration.py
@@ -1,5 +1,10 @@
1
# coding: utf-8
2
3
+import sys
4
+
5
+import os
6
7
8
"""
9
SKE-API
10
@@ -11,8 +16,6 @@
11
16
Do not edit the class manually.
12
17
""" # noqa: E501 docstring might be too long
13
18
14
-import os
15
-
19
20
class HostConfiguration:
21
def __init__(
@@ -29,6 +32,7 @@ def __init__(
29
32
"as a function argument instead of being set in the client configuration.\n"
30
33
"Once all services have migrated, the methods to specify the region in the client configuration "
31
34
"will be removed.",
35
+ file=sys.stderr,
36
)
37
"""Constructor
38
0 commit comments