remove another unused import
This commit is contained in:
parent
b3d606fa6f
commit
43d77e49ba
1 changed files with 1 additions and 2 deletions
|
@ -8,7 +8,6 @@ from enum import Enum
|
|||
from typing import Any, Optional, Union
|
||||
import re
|
||||
import sys
|
||||
import textwrap
|
||||
from pathlib import Path
|
||||
from functools import cache
|
||||
from datetime import datetime
|
||||
|
@ -229,7 +228,7 @@ class AppAutoUpdater:
|
|||
|
||||
# Default message
|
||||
pr_title = commit_msg = "Upgrade sources"
|
||||
date = datetime.now().strftime("%y%m%d")
|
||||
date = datetime.utcnow().strftime("%y%m%d")
|
||||
branch_name = f"ci-auto-update-sources-{date}"
|
||||
|
||||
for source, infos in self.sources.items():
|
||||
|
|
Loading…
Reference in a new issue