From 3ac4fe31767beed219cc556ebf0fca5e00a0490c Mon Sep 17 00:00:00 2001 From: Rasmus Thing Date: Mon, 30 Oct 2023 15:39:24 +0100 Subject: [PATCH] Wrong capitalisation for licenses --- pyfortiassetmgmt/core/api.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyfortiassetmgmt/core/api.py b/pyfortiassetmgmt/core/api.py index edf973c..2d2dc33 100644 --- a/pyfortiassetmgmt/core/api.py +++ b/pyfortiassetmgmt/core/api.py @@ -34,7 +34,7 @@ def folders(self): return Folders(api=self) @property - def Licenses(self): + def licenses(self): """Endpoints related to license management. """ return Licenses(api=self) diff --git a/setup.py b/setup.py index 9ca279f..a978af9 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name="pyfortiassetmgmt", - version="1.0.0", + version="1.0.1", description="Python API client library for Fortinet's Asset Management.", long_description=long_description, long_description_content_type="text/markdown",