services are checked

This commit is contained in:
2024-11-08 17:14:02 +03:00
parent a5b1e0b2f4
commit c5b771e5cb
82 changed files with 1720 additions and 869 deletions

View File

@@ -1,7 +1,4 @@
from date_time_actions.date_functions import client_arrow, system_arrow
__all__ = [
"client_arrow",
"system_arrow"
]
__all__ = ["client_arrow", "system_arrow"]

View File

@@ -9,7 +9,7 @@ class DateTimeLocal:
def __init__(self, timezone: str = "GMT+3", is_client: bool = True):
self.timezone = self.__SYSTEM__
if is_client:
self.timezone = timezone.replace('-', '+')
self.timezone = timezone.replace("-", "+")
def find_last_day_of_month(self, date_value):
today = self.get(date_value).date()