Skip to content

Commit

Permalink
chore: remove unsupported annotations
Browse files Browse the repository at this point in the history
these annotations dont work on python <3.9

closes #1440
  • Loading branch information
ankush committed Feb 28, 2023
1 parent 4ec73c3 commit 9fb55e6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions easy-install.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def get_from_env(dir, file) -> Dict:

def write_to_env(
wd: str,
sites: list[str],
sites,
db_pass: str,
admin_pass: str,
email: str,
Expand Down Expand Up @@ -317,8 +317,8 @@ def create_site(
"--sitename",
help="Site Name(s) for your production bench",
default=["site1.localhost"],
action='append',
dest='sites'
action="append",
dest="sites",
)
parser.add_argument("-n", "--project", help="Project Name", default="frappe")
parser.add_argument(
Expand Down

0 comments on commit 9fb55e6

Please sign in to comment.