74d84892ca41bc0094653d1b24f28119e706f854
[plcapi.git] / PLC / Methods / AdmGetNodes.py
1 from PLC.Methods.GetNodes import GetNodes
2
3 class AdmGetNodes(GetNodes):
4     """
5     Deprecated. See GetNodes. All fields are now always returned.
6     """
7
8     status = "deprecated"
9
10     def call(self, auth, node_id_or_hostname_list = None, return_fields = None):
11         return GetNodes.call(self, auth, node_id_or_hostname_list)