diff --git a/controlPlatform/extensions/pll.py b/controlPlatform/extensions/pll.py index 40564d843151696b75a69cda37dad0eb45ff8462..68c673db92c7ba216e45493e60ab78f87ea5a72b 100644 --- a/controlPlatform/extensions/pll.py +++ b/controlPlatform/extensions/pll.py @@ -1,15 +1,17 @@ from ..extension import __Extension__ + class Pll(__Extension__): - """ - Extends a platform with "Pll" functionality - """ - def __init__(self, platform, configHandler): - super().__init__(self, platform, configHandler, "PLL") - - def configure(self): - """ - Signal to the PLL platform that configuration is finished and that PLL can now be programmed - """ - self.handler.communicate( - self.interface.send(["CONFIG", "EXTERNAL", "PLL", "FINISHED"])) \ No newline at end of file + """ + Extends a platform with "Pll" functionality + """ + + def __init__(self, platform, configHandler): + super().__init__(self, platform, configHandler, "PLL") + + def configure(self): + """ + Signal to the PLL platform that configuration is finished and that PLL can now be programmed + """ + self.configHandler.communicate( + self.interface.send(["CONFIG", "EXTERNAL", "PLL", "FINISHED"]))