From de65192e455e2660c6061355a046baa1bf4ce4a0 Mon Sep 17 00:00:00 2001 From: Nick Tyler Date: Thu, 21 Apr 2022 18:12:32 -0700 Subject: [PATCH] remove debug print --- python/SuperfacilityAPI/__init__.py | 1 - setup.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/python/SuperfacilityAPI/__init__.py b/python/SuperfacilityAPI/__init__.py index eb0c9ea..bd5a1a4 100644 --- a/python/SuperfacilityAPI/__init__.py +++ b/python/SuperfacilityAPI/__init__.py @@ -75,7 +75,6 @@ def __init__(self, client_id: str = None, private_key: str = None, key_path: str @property def token(self): if self.session is not None: - print(f"Getting new token", file=sys.stderr) self.access_token = self.session.fetch_token()['access_token'] return self.access_token diff --git a/setup.py b/setup.py index 960ee37..7506820 100644 --- a/setup.py +++ b/setup.py @@ -38,7 +38,7 @@ author_email="tylern@lbl.gov", packages=['SuperfacilityAPI'], package_dir={'': 'python'}, - version='0.1.3', + version='0.1.4', scripts=['python/SuperfacilityAPI/bin/sfapi'], install_requires=install_requires, classifiers=[