Skip to content

Commit 272664c

Browse files
committed
chore(download): no need to override TZ
1 parent 54b042d commit 272664c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

compiler_admin/commands/time/download.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
from datetime import datetime, timedelta
2-
import os
32
from typing import List
43

54
import click
@@ -8,7 +7,7 @@
87
from compiler_admin.services.toggl import TOGGL_COLUMNS, download_time_entries
98

109

11-
TZINFO = timezone(os.environ.get("TZ_NAME", "America/Los_Angeles"))
10+
TZINFO = timezone("America/Los_Angeles")
1211

1312

1413
def local_now():

0 commit comments

Comments
 (0)