1
0
Fork 0
mirror of https://github.com/yavook/kiwi-scp.git synced 2024-11-22 04:43:00 +00:00

f-Strings consistency

This commit is contained in:
Jörn-Michael Miehe 2020-08-10 17:39:33 +02:00
parent ceb4bc0430
commit e667c00b04

View file

@ -8,8 +8,8 @@ from .core import KIWI_ROOT, KIWI_CONF_NAME
###########
# CONSTANTS
DEFAULT_KIWI_CONF_NAME = KIWI_ROOT + "/default.kiwi.yml"
VERSION_TAG_NAME = KIWI_ROOT + "/version-tag"
DEFAULT_KIWI_CONF_NAME = f"{KIWI_ROOT}/default.kiwi.yml"
VERSION_TAG_NAME = f"{KIWI_ROOT}/version-tag"
class Config: