Skip to content

Commit

Permalink
fix mypy error
Browse files Browse the repository at this point in the history
  • Loading branch information
pranavcracker committed Feb 26, 2024
1 parent f354d21 commit 289fc22
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kubemarine/patches/disable_token_automount.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from kubemarine.plugins.manifest import Processor, EnrichmentFunction, Manifest, Identity

class TheAction(Action):
def __init__(self):
def __init__(self) -> None:
super().__init__("Disable automount of Serice acocunt tokens")

def run(self, res: DynamicResources) -> None:
Expand All @@ -18,7 +18,7 @@ def run(self, res: DynamicResources) -> None:


class DisableTokenAutomount(RegularPatch):
def __init__(self):
def __init__(self) -> None:
super().__init__("disable_token_automount")

@property
Expand Down

0 comments on commit 289fc22

Please sign in to comment.