--- a/contrib/automation/hgautomation/__init__.py Sat Oct 05 10:29:34 2019 -0400
+++ b/contrib/automation/hgautomation/__init__.py Sun Oct 06 09:45:02 2019 -0400
@@ -10,9 +10,7 @@
import pathlib
import secrets
-from .aws import (
- AWSConnection,
-)
+from .aws import AWSConnection
class HGAutomation:
@@ -53,7 +51,7 @@
return password
- def aws_connection(self, region: str, ensure_ec2_state: bool=True):
+ def aws_connection(self, region: str, ensure_ec2_state: bool = True):
"""Obtain an AWSConnection instance bound to a specific region."""
return AWSConnection(self, region, ensure_ec2_state=ensure_ec2_state)