1
0
Fork 0

Minor Fix Pre-Merge

This commit is contained in:
Joao Gilberto Magalhaes 2023-07-03 14:59:17 -05:00
parent 812590d86c
commit 166b75cd75
16 changed files with 77 additions and 65 deletions

View file

@ -198,7 +198,7 @@ class Kubernetes(ProcessorInterface):
self.cert_cache = {}
super().__init__()
def _check_annotation(self, annotations, key, default = None):
def _check_annotation(self, annotations, key, default=None):
if key not in annotations:
return default
return annotations[key]