Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
robbinjanssen committed Jan 28, 2025
1 parent ede82ba commit cc884f1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions certbot_dns_exonet/authenticators/exonet_authenticator.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,10 @@ def more_info(self) -> str:
Information about the plugin.
"""
return "This plugin configures a DNS TXT record to respond to a dns-01 " \
"challenge using the Exonet API."
return (
"This plugin configures a DNS TXT record to respond to a dns-01 "
"challenge using the Exonet API."
)

def _setup_credentials(self) -> None:
self.credentials = self._configure_credentials(
Expand Down
2 changes: 1 addition & 1 deletion tests/authenticators/test_exonet_authenticator.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,6 @@ def test_more_info(self, mock_configure_credentials: Mock) -> None:

# Check response.
assert info == (
"This plugin configures a DNS TXT record to respond to a dns-01 "\
"This plugin configures a DNS TXT record to respond to a dns-01 "
"challenge using the Exonet API."
)

0 comments on commit cc884f1

Please sign in to comment.