Ashhar
commited on
Commit
•
24e5a85
1
Parent(s):
618e6a8
remove extra logging
Browse files- helpers/sidebar.py +1 -1
helpers/sidebar.py
CHANGED
@@ -10,7 +10,7 @@ import re
|
|
10 |
def __fixTimestamp(timestamp: str):
|
11 |
# Add a trailing zero to microseconds if needed
|
12 |
fixedTimestamp = re.sub(r'(\d{2}:\d{2}:\d{2}\.\d{5})(?=[+-]|$)', r'\g<1>0', timestamp)
|
13 |
-
U.pprint(f"{timestamp=} | {fixedTimestamp=}")
|
14 |
return fixedTimestamp
|
15 |
|
16 |
|
|
|
10 |
def __fixTimestamp(timestamp: str):
|
11 |
# Add a trailing zero to microseconds if needed
|
12 |
fixedTimestamp = re.sub(r'(\d{2}:\d{2}:\d{2}\.\d{5})(?=[+-]|$)', r'\g<1>0', timestamp)
|
13 |
+
# U.pprint(f"{timestamp=} | {fixedTimestamp=}")
|
14 |
return fixedTimestamp
|
15 |
|
16 |
|