Skip to content

Commit

Permalink
refactor: logging when init Gungnir;
Browse files Browse the repository at this point in the history
  • Loading branch information
WenjieDu committed Aug 2, 2024
1 parent cde042f commit b9f3016
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions pypots/gungnir/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,6 @@

from ..utils.logging import logger

logger.info(
"The functionalities of client Gungnir have not been implemented yet,\n"
"which will be updated later 2024 once our close beta test is ready.\n"
"AI for real-world time series is coming. 🚀 Stay tuned please! https://time-series.ai"
)


class TimeSeriesAI:
def __init__(self):
Expand All @@ -22,3 +16,8 @@ def __init__(self):
class Gungnir(TimeSeriesAI):
def __init__(self):
super().__init__()
logger.info(
"The functionalities of client Gungnir have not been implemented yet,\n"
"which will be updated later 2024 once our close beta test is ready.\n"
"AI for real-world time series is coming. 🚀 Stay tuned please! https://time-series.ai"
)

0 comments on commit b9f3016

Please sign in to comment.