Skip to content

Commit 8005cb9

Browse files
author
Nick Selpa
committed
Version bump to 0.3.4 and linting
1 parent c4906f8 commit 8005cb9

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ SHA1 := $$(git log -1 --pretty=%h)
88
CURRENT_BRANCH := $$(git symbolic-ref -q --short HEAD)
99
LATEST_TAG := ${REPO_NAME}:latest
1010
GIT_TAG := ${REPO_NAME}:${SHA1}
11-
VERSION := v0.3.3
11+
VERSION := v0.3.4
1212

1313
info: ## Show information about the current git state.
1414
@echo "Github Project: https://github.com/${REPO_NAME}\nCurrent Branch: ${CURRENT_BRANCH}\nSHA1: ${SHA1}\n"

cloudendure/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.3.3"
1+
__version__ = "0.3.4"

cloudendure/cloudendure.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -477,8 +477,6 @@ def get_machine_sync_details(self) -> Dict[Any]:
477477
# output to stdout for interactive usage
478478
return response_dict
479479

480-
481-
482480
def inspect_ce_project(self, check_type: str) -> Dict[str, Any]:
483481
valid_check_types: List[str] = ["not_synced", "not_started", "not_current", "is_lagged"]
484482
if check_type not in valid_check_types:
@@ -505,8 +503,10 @@ def _inspector(self, **kwargs):
505503
elif "not_started" in kwargs.values():
506504
return self._not_started(machine=kwargs.get("machine"))
507505
else:
508-
return self._time_delta_context(machine=kwargs.get("machine", {}), check_type=kwargs.get("check_type", ""))
509-
506+
return self._time_delta_context(
507+
machine=kwargs.get("machine", {}), check_type=kwargs.get("check_type", "")
508+
)
509+
510510
def _not_synced(self, machine) -> bool:
511511
if machine["backlogged_storage_bytes"] > 0 or machine["rescanned_storage_bytes"] > 0:
512512
return True

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "cloudendure"
3-
version = "0.3.3"
3+
version = "0.3.4"
44
description = "Python wrapper and CLI for CloudEndure"
55
authors = ["Mark Beacom <[email protected]>", "Tom Warnock <[email protected]>"]
66
maintainers = ["Evan Lucchesi <[email protected]>", "Nick Selpa <[email protected]>"]

0 commit comments

Comments
 (0)