Now passing the basic unit tests

This commit is contained in:
Mark J. Horninger 2024-02-15 22:01:01 -05:00
parent 236d15f969
commit 0d096756fb
1 changed files with 2 additions and 2 deletions

View File

@ -90,8 +90,8 @@ class InventoryModule(BaseInventoryPlugin, Constructable, Cacheable):
api_key = self.get_option('api_key')
api_url = self.get_option('api_url')
if self.templar.is_template(access_token):
access_token = self.templar.template(access_token)
if self.templar.is_template(api_key):
api_key = self.templar.template(api_key)
if self.templar.is_template(api_url):
api_url = self.templar.template(api_url)