diff options
author | 2021-06-15 13:01:54 +0000 | |
---|---|---|
committer | 2021-06-18 07:39:23 +0000 | |
commit | 92b7f70deb207f618f65ccc00e135e6b31fd56f0 (patch) | |
tree | ba152eb62d12f84f607e423350b244bb083fbf7c /miss_htbt_service/htbtworker.py | |
parent | 6ebeaa909fb5c09f2ade3971c87d496b6a3a028a (diff) |
Remove unused imports and bump version to 2.3.0
Remove unused import statements from script.
Bumped up version to 2.3.0.
Signed-off-by: Satoshi Fujii <fujii-satoshi@jp.fujitsu.com>
Issue-ID: DCAEGEN2-2833
Change-Id: I015e89f1b56ca12483e432bf67123f33140d722c
Diffstat (limited to 'miss_htbt_service/htbtworker.py')
-rw-r--r-- | miss_htbt_service/htbtworker.py | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/miss_htbt_service/htbtworker.py b/miss_htbt_service/htbtworker.py index 9472473..a2ffeca 100644 --- a/miss_htbt_service/htbtworker.py +++ b/miss_htbt_service/htbtworker.py @@ -1,19 +1,22 @@ #!/usr/bin/env python3 +# ============LICENSE_START======================================================= # Copyright 2018-2020 AT&T Intellectual Property, Inc. All rights reserved. # Copyright (c) 2019 Pantheon.tech. All rights reserved. # Copyright 2020 Deutsche Telekom. All rights reserved. -# +# Copyright 2021 Fujitsu Ltd. +# ================================================================================ # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. +# ============LICENSE_END========================================================= # # Author Prakash Hosangady(ph553f@att.com) # Simple Microservice @@ -24,8 +27,9 @@ import psycopg2 import requests import os import os.path as path -import json,sys,time -import logging +import json +import sys +import time import misshtbtd as db import get_logger |