Skip to content

Commit

Permalink
fix: easy-install.py typings
Browse files Browse the repository at this point in the history
  • Loading branch information
revant committed Oct 27, 2024
1 parent 97ce6f7 commit 6f407fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions easy-install.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import time
import urllib.request
from shutil import move, unpack_archive, which
from typing import Dict
from typing import Dict, List

logging.basicConfig(
filename="easy-install.log",
Expand Down Expand Up @@ -377,7 +377,7 @@ def build_image(
frappe_branch: str,
containerfile_path: str,
apps_json_path: str,
tags: list[str],
tags: List[str],
python_version: str,
node_version: str,
):
Expand Down

0 comments on commit 6f407fe

Please sign in to comment.