Skip to content

Commit

Permalink
chore: Reformatted file format
Browse files Browse the repository at this point in the history
black has striked again
  • Loading branch information
carstencodes committed Aug 21, 2024
1 parent 070119b commit 393034d
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions src/pdm_bump/core/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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(
Expand Down

0 comments on commit 393034d

Please sign in to comment.