Skip to content

Commit

Permalink
Bump docformatter from v1.7.3 to v1.7.5
Browse files Browse the repository at this point in the history
  • Loading branch information
brutusthebee committed Jul 16, 2023
1 parent b6057a0 commit ebfa441
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ repos:
- id: pyupgrade
args: [--py38-plus]
- repo: https://github.com/PyCQA/docformatter
rev: v1.7.3
rev: v1.7.5
hooks:
- id: docformatter
args: [--in-place, --black]
Expand Down
8 changes: 4 additions & 4 deletions src/briefcase/commands/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -365,10 +365,10 @@ def path_index(self, app: AppConfig, path_name: str) -> str | dict | list:
def template_target_version(self, app: AppConfig) -> str | None:
"""The target version of Briefcase for the app from ``briefcase.toml``.
This value represents a version epoch specific to the platform. An epoch
begins when a breaking change is introduced. Therefore, this value would
remain the version of Briefcase that introduced a breaking change for a
template until another such change requires a new epoch.
This value represents a version epoch specific to the platform. An epoch begins
when a breaking change is introduced. Therefore, this value would remain the
version of Briefcase that introduced a breaking change for a template until
another such change requires a new epoch.
:param app: The config object for the app
:return: target version or None if one isn't specified
Expand Down
4 changes: 2 additions & 2 deletions tests/integrations/base/test_tool_registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ def integrations_modules() -> Set[str]:


def tools_for_module(tool_module_name: str) -> Dict[str, Type[Tool]]:
"""Return classes that subclass Tool in a module in
``briefcase.integrations``, e.g. {"android_sdk": AndroidSDK}."""
"""Return classes that subclass Tool in a module in ``briefcase.integrations``, e.g.
{"android_sdk": AndroidSDK}."""
return dict(
inspect.getmembers(
sys.modules[f"briefcase.integrations.{tool_module_name}"],
Expand Down

0 comments on commit ebfa441

Please sign in to comment.