diff --git a/pyproject.toml b/pyproject.toml index 134d44f3e..59f4698e1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "viam-sdk" -version = "0.8.1" +version = "0.9.0rc1" description = "Viam Robotics Python SDK" authors = [ "Naveed " ] license = "Apache-2.0" diff --git a/src/viam/app/billing_client.py b/src/viam/app/billing_client.py index 2cb2e6429..4abf61586 100644 --- a/src/viam/app/billing_client.py +++ b/src/viam/app/billing_client.py @@ -4,15 +4,15 @@ from viam import logging from viam.proto.app.billing import ( - BillingServiceStub, - GetCurrentMonthUsageRequest, - GetCurrentMonthUsageResponse, - GetInvoicePdfRequest, - GetInvoicePdfResponse, - GetInvoicesSummaryRequest, - GetInvoicesSummaryResponse, - GetOrgBillingInformationRequest, - GetOrgBillingInformationResponse, + BillingServiceStub, + GetCurrentMonthUsageRequest, + GetCurrentMonthUsageResponse, + GetInvoicePdfRequest, + GetInvoicePdfResponse, + GetInvoicesSummaryRequest, + GetInvoicesSummaryResponse, + GetOrgBillingInformationRequest, + GetOrgBillingInformationResponse, ) LOGGER = logging.getLogger(__name__)