Fix version import location

This commit is contained in:
2025-06-05 00:19:55 -04:00
parent cfb13fbccf
commit 479482ef75
4 changed files with 5 additions and 5 deletions

View File

@ -51,8 +51,6 @@ import click
###############################################################################
VERSION = "0.9.107"
CONTEXT_SETTINGS = dict(
help_option_names=["-h", "--help"], max_content_width=MAX_CONTENT_WIDTH
)

View File

@ -30,6 +30,8 @@ from yaml import load as yload
from yaml import SafeLoader
VERSION = "1.0"
DEFAULT_STORE_DATA = {"cfgfile": "/etc/pvc/pvc.conf"}
DEFAULT_STORE_FILENAME = "pvc.json"
DEFAULT_API_PREFIX = "/api/v1"

View File

@ -27,7 +27,7 @@ from requests import get, post, put, patch, delete, Response
from requests.exceptions import ConnectionError
from time import time
from urllib3 import disable_warnings
from pvc.cli.cli import VERSION
from pvc.cli.helpers import VERSION
def format_bytes(size_bytes):