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