mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Removed version argument from argparse
This was breaking standalone execution and isn't needed
This commit is contained in:
parent
15915bb3ca
commit
9dcfbb1130
1 changed files with 0 additions and 4 deletions
|
@ -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',
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue