kaisero / fireREST

Python library for interacting with Cisco Firepower Management Center REST API
GNU General Public License v3.0
70 stars 49 forks source link

Naming incosistency: ftddevicehapair vs ftdhapair #76

Open sfiorido opened 1 year ago

sfiorido commented 1 year ago

In the fireREST.fmc.devicehapair constructor the method is named "ftdhapair" while in the directory tree and docs is named "ftddevicehapair".

from fireREST.fmc import Connection from fireREST.fmc.devicehapair.ftddevicehapair import FtdHAPair

class DeviceHAPair: def init(self, conn: Connection): self.ftdhapair = FtdHAPair(conn)