Upgrade black version (#424)

Upgrade black version

SUMMARY

Move off of beta version of black and pin to current calendar year
version.
The only manual changes here are to tox.ini. Everything else is from running the new version of black.

ISSUE TYPE

COMPONENT NAME

ADDITIONAL INFORMATION

Reviewed-by: Abhijeet Kasurde <None>
This commit is contained in:
Mike Graves
2022-03-30 11:02:46 -04:00
committed by GitHub
parent 0299aa8807
commit 7c71436f3b
16 changed files with 110 additions and 62 deletions

View File

@@ -301,7 +301,10 @@ class K8sTaintAnsible:
def main():
module = AnsibleModule(argument_spec=argspec(), supports_check_mode=True,)
module = AnsibleModule(
argument_spec=argspec(),
supports_check_mode=True,
)
k8s_taint = K8sTaintAnsible(module)
k8s_taint.execute_module()