From 393034d2d9c2de1c40efd23fe1d96a7a70cb2196 Mon Sep 17 00:00:00 2001 From: Carsten Igel Date: Wed, 21 Aug 2024 20:05:14 +0200 Subject: [PATCH] chore: Reformatted file format black has striked again --- src/pdm_bump/core/config.py | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/src/pdm_bump/core/config.py b/src/pdm_bump/core/config.py index 9ffdbea..b9d95b2 100644 --- a/src/pdm_bump/core/config.py +++ b/src/pdm_bump/core/config.py @@ -29,7 +29,6 @@ from types import SimpleNamespace from pdm.project.config import ConfigItem - from pdm_pfsc.abstractions import ConfigHolder from pdm_pfsc.config import Config as SupportsConfigFile @@ -274,20 +273,24 @@ def __init__( self.__items = ConfigItems(self) self.__items.add_config_value( "commit_msg_tpl", - description=("The default commit message. " - "Uses templates 'from' and 'to'."), + description=( + "The default commit message. " + "Uses templates 'from' and 'to'." + ), default=COMMIT_MESSAGE_TEMPLATE_DEFAULT, ) self.__items.add_config_value( "perform_commit", - description=("If set to true, commit the " - "bumped changes automatically"), + description=( + "If set to true, commit the " "bumped changes automatically" + ), default=PERFORM_COMMIT_DEFAULT, ) self.__items.add_config_value( "auto_tag", - description=("Create a tag after bumping " - "and committing the changes"), + description=( + "Create a tag after bumping " "and committing the changes" + ), default=AUTO_TAG_DEFAULT, ) self.__items.add_config_value(