From 324f1633fe6e7e5a8b3fefe1eed481a58cf5f2df Mon Sep 17 00:00:00 2001 From: Artem Ustinov Date: Wed, 28 Jun 2023 08:56:24 -0700 Subject: [PATCH] WFESO-6060: Fix Linter Issues. (#35) * Fix Linters Issues * Fix Missing Dependency. * Test if Workflow is Passing. * Removing the Test Code. --- .github/workflows/env.yml | 2 +- setup.py | 2 +- wavefront_cli/lib/aws.py | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/env.yml b/.github/workflows/env.yml index 816ef4e..8972967 100644 --- a/.github/workflows/env.yml +++ b/.github/workflows/env.yml @@ -6,7 +6,7 @@ on: package_name: value: 'wavefront_cli' requirements: - value: "boto distro docopt pytest requests" + value: "boto3 distro docopt pytest requests" jobs: envset: diff --git a/setup.py b/setup.py index b8d3ec4..3d7802e 100644 --- a/setup.py +++ b/setup.py @@ -33,7 +33,7 @@ def run(self): setuptools.setup( name='wavefront-cli', - version='0.5.0', + version='0.1.0', description='VMware Aria Operations for Applications CLI Utility.', long_description=long_description, url='https://github.com/wavefrontHQ/wavefront-cli', diff --git a/wavefront_cli/lib/aws.py b/wavefront_cli/lib/aws.py index 628a08d..14b8711 100644 --- a/wavefront_cli/lib/aws.py +++ b/wavefront_cli/lib/aws.py @@ -1,6 +1,7 @@ """Manage AWS instance tags for telegraf.""" import boto3 + import requests from . import agent