Quellcode durchsuchen

Update 'plugins/edirectory_monitor/server_side_calls/special_agent_edirectory_monitor.py'

Michael Honkoop vor 4 Monaten
Ursprung
Commit
d546f78357

+ 5 - 1
plugins/edirectory_monitor/server_side_calls/special_agent_edirectory_monitor.py

@@ -1,5 +1,9 @@
 #!/usr/bin/env python3
 
+# -*- encoding: utf-8; py-indent-offset: 4 -*-
+
+# License: GNU General Public License v2
+
 from collections.abc import Iterator, Mapping, Sequence
 
 from pydantic import BaseModel
@@ -17,7 +21,6 @@ def commands_function(params: Params, host_config: HostConfig) -> Iterator[Speci
         params.user,
         params.password.unsafe(),
     ]
-
     yield SpecialAgentCommand(command_arguments=command_arguments)
 
 special_agent_edirectory_monitor = SpecialAgentConfig(
@@ -25,3 +28,4 @@ special_agent_edirectory_monitor = SpecialAgentConfig(
     parameter_parser=Params.model_validate,
     commands_function=commands_function,
 )
+