From a0e19410e7cf739c64fe764ff5f495e59a716d8a Mon Sep 17 00:00:00 2001 From: Joohyong Han Date: Fri, 13 Oct 2023 19:36:00 -0400 Subject: [PATCH] Update entities_checker_util.py --- .../tools/entities_checker_util.py | 20 +++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/src/dfcx_scrapi/tools/entities_checker_util.py b/src/dfcx_scrapi/tools/entities_checker_util.py index c2b2a3a3..04a2b3fa 100644 --- a/src/dfcx_scrapi/tools/entities_checker_util.py +++ b/src/dfcx_scrapi/tools/entities_checker_util.py @@ -1,3 +1,19 @@ +"""A set of Utility methods to check entities on DFCX Agents.""" + +# Copyright 2023 Google LLC +# +# 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 +# +# https://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. + import logging from typing import Dict import pandas as pd @@ -9,8 +25,8 @@ # logging config logging.basicConfig( level=logging.INFO, - format="%(asctime)s %(levelname)-8s %(message)s", - datefmt="%Y-%m-%d %H:%M:%S", + format='%(asctime)s %(levelname)-8s %(message)s', + datefmt='%Y-%m-%d %H:%M:%S', ) class EntitiesCheckerUtil(scrapi_base.ScrapiBase):