[SEBA-412] Automated reformat of Python code
Passes of modernize, autopep8, black, then check with flake8
flake8 + manual fixes:
lib/xos-config
lib/xos-kafka
lib/xos-util
xos/coreapi
xos/api
xos/xos_client
Change-Id: Ib23cf84cb13beb3c6381fa0d79594dc9131dc815
diff --git a/lib/xos-config/xosconfig/default.py b/lib/xos-config/xosconfig/default.py
index 2c73b26..afed387 100644
--- a/lib/xos-config/xosconfig/default.py
+++ b/lib/xos-config/xosconfig/default.py
@@ -13,52 +13,34 @@
# limitations under the License.
DEFAULT_VALUES = {
- 'xos_dir': '/opt/xos',
-
+ "xos_dir": "/opt/xos",
# The configuration below inherits from the standard config of the Python logging module
# See: https://docs.python.org/2/library/logging.config.html
# multistructlog supports this config in all of its generality
# So for instance, you can add new handlers. Note that all handlers will
# receive logs simultaneously.
-
- 'blueprints': {},
- 'logging': {
- 'version': 1,
- 'handlers': {
- 'console': {
- 'class': 'logging.StreamHandler',
+ "blueprints": {},
+ "logging": {
+ "version": 1,
+ "handlers": {
+ "console": {"class": "logging.StreamHandler"},
+ "file": {
+ "class": "logging.handlers.RotatingFileHandler",
+ "filename": "/var/log/xos.log",
+ "maxBytes": 10485760,
+ "backupCount": 5,
},
- 'file': {
- 'class': 'logging.handlers.RotatingFileHandler',
- 'filename': '/var/log/xos.log',
- 'maxBytes': 10485760,
- 'backupCount': 5
- }
},
- 'loggers': {
- '': {
- 'handlers': ['console', 'file'],
- 'level': 'DEBUG'
- }
- }
+ "loggers": {"": {"handlers": ["console", "file"], "level": "DEBUG"}},
},
- 'accessor': {
- 'endpoint': 'xos-core.cord.lab:50051',
- 'kind': 'grpcapi',
- },
- 'keep_temp_files': False,
- 'dependency_graph': None,
- 'error_map_path': '/opt/xos/error_map.txt',
- 'feefie': {
- 'client_user': 'pl'
- },
- 'proxy_ssh': {
- 'enabled': True,
- 'key': '/opt/cord_profile/node_key',
- 'user': 'root'
- },
- 'node_key': '/opt/cord_profile/node_key',
- 'config_dir': '/etc/xos/sync',
- 'backoff_disabled': True,
- 'kafka_bootstrap_servers': ['cord-kafka:9092'],
+ "accessor": {"endpoint": "xos-core.cord.lab:50051", "kind": "grpcapi"},
+ "keep_temp_files": False,
+ "dependency_graph": None,
+ "error_map_path": "/opt/xos/error_map.txt",
+ "feefie": {"client_user": "pl"},
+ "proxy_ssh": {"enabled": True, "key": "/opt/cord_profile/node_key", "user": "root"},
+ "node_key": "/opt/cord_profile/node_key",
+ "config_dir": "/etc/xos/sync",
+ "backoff_disabled": True,
+ "kafka_bootstrap_servers": ["cord-kafka:9092"],
}