launchpad-reviewers team mailing list archive
-
launchpad-reviewers team
-
Mailing list archive
-
Message #32606
[Merge] ~lgp171188/turnip:fix-linter-errors into turnip:master
Guruprasad has proposed merging ~lgp171188/turnip:fix-linter-errors into turnip:master.
Commit message:
Fix lint errors reported by the black pre-commit hook
Requested reviews:
Launchpad code reviewers (launchpad-reviewers)
For more details, see:
https://code.launchpad.net/~lgp171188/turnip/+git/turnip/+merge/487058
--
Your team Launchpad code reviewers is requested to review the proposed merge of ~lgp171188/turnip:fix-linter-errors into turnip:master.
diff --git a/charm/turnip-pack-frontend-git/reactive/turnip-pack-frontend-git.py b/charm/turnip-pack-frontend-git/reactive/turnip-pack-frontend-git.py
index d21e046..c1de7f8 100644
--- a/charm/turnip-pack-frontend-git/reactive/turnip-pack-frontend-git.py
+++ b/charm/turnip-pack-frontend-git/reactive/turnip-pack-frontend-git.py
@@ -41,9 +41,7 @@ def turnip_pack_virt_available():
def turnip_pack_virt_unavailable():
clear_flag("turnip.services.pack-virt")
clear_flag("turnip.configured")
- status.blocked(
- "turnip-pack-virt must be related to the http interface"
- )
+ status.blocked("turnip-pack-virt must be related to the http interface")
@when("turnip.installed", "turnip.services.pack-virt")
diff --git a/charm/turnip-pack-frontend-http/reactive/turnip-pack-frontend-http.py b/charm/turnip-pack-frontend-http/reactive/turnip-pack-frontend-http.py
index 87c0cfd..49ee738 100644
--- a/charm/turnip-pack-frontend-http/reactive/turnip-pack-frontend-http.py
+++ b/charm/turnip-pack-frontend-http/reactive/turnip-pack-frontend-http.py
@@ -59,9 +59,7 @@ def turnip_pack_virt_available():
def turnip_pack_virt_unavailable():
clear_flag("turnip.services.pack-virt")
clear_flag("turnip.configured")
- status.blocked(
- "turnip-pack-virt must be related to the http interface"
- )
+ status.blocked("turnip-pack-virt must be related to the http interface")
@when(
diff --git a/charm/turnip-pack-frontend-ssh/reactive/turnip-pack-frontend-ssh.py b/charm/turnip-pack-frontend-ssh/reactive/turnip-pack-frontend-ssh.py
index 39dc40b..45501cf 100644
--- a/charm/turnip-pack-frontend-ssh/reactive/turnip-pack-frontend-ssh.py
+++ b/charm/turnip-pack-frontend-ssh/reactive/turnip-pack-frontend-ssh.py
@@ -47,9 +47,7 @@ def turnip_pack_virt_available():
def turnip_pack_virt_unavailable():
clear_flag("turnip.services.pack-virt")
clear_flag("turnip.configured")
- status.blocked(
- "turnip-pack-virt must be related to the http interface"
- )
+ status.blocked("turnip-pack-virt must be related to the http interface")
@when(
diff --git a/charm/turnip-pack-virt/reactive/turnip-pack-virt.py b/charm/turnip-pack-virt/reactive/turnip-pack-virt.py
index cc1c029..19e3030 100644
--- a/charm/turnip-pack-virt/reactive/turnip-pack-virt.py
+++ b/charm/turnip-pack-virt/reactive/turnip-pack-virt.py
@@ -42,9 +42,7 @@ def turnip_pack_backend_available():
def turnip_pack_backend_unavailable():
clear_flag("turnip.services.pack-backend")
clear_flag("turnip.configured")
- status.blocked(
- "turnip-pack-backend must be related to the http interface"
- )
+ status.blocked("turnip-pack-backend must be related to the http interface")
@when("turnip.installed", "turnip.services.pack-backend")