mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 22:02:50 +00:00
Removed version argument from argparse
This was breaking standalone execution and isn't needed
This commit is contained in:
@@ -148,9 +148,6 @@ from pynsot.client import get_api_client
|
|||||||
from pynsot.app import HttpServerError
|
from pynsot.app import HttpServerError
|
||||||
from click.exceptions import UsageError
|
from click.exceptions import UsageError
|
||||||
|
|
||||||
# Version source of truth is in setup.py
|
|
||||||
__version__ = pkg_resources.require('ansible_nsot')[0].version
|
|
||||||
|
|
||||||
|
|
||||||
def warning(*objs):
|
def warning(*objs):
|
||||||
print("WARNING: ", *objs, file=sys.stderr)
|
print("WARNING: ", *objs, file=sys.stderr)
|
||||||
@@ -299,7 +296,6 @@ def parse_args():
|
|||||||
# Establish parser with options and error out if no action provided
|
# Establish parser with options and error out if no action provided
|
||||||
parser = argparse.ArgumentParser(
|
parser = argparse.ArgumentParser(
|
||||||
description=desc,
|
description=desc,
|
||||||
version=__version__,
|
|
||||||
conflict_handler='resolve',
|
conflict_handler='resolve',
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user