Skip to content

Commit 26211b9

Browse files
committed
forgotten semicolons
1 parent 58d2dec commit 26211b9

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/initialize.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -165,14 +165,14 @@ def mainScript():
165165

166166
def gtkorqt():
167167
with open(f"{self.projectID}/requirements.txt", "w") as f:
168-
f.write("pyinstaller\npywebview sys_platform != 'linux'\n")
168+
f.write("pyinstaller\npywebview; sys_platform != 'linux'\n")
169169
if self.qtorgtk == "GTK":
170-
packages = ["pywebview[gtk] sys_platform == 'linux'"]
170+
packages = ["pywebview[gtk]; sys_platform == 'linux'"]
171171
with open(f"{self.projectID}/requirements.txt", "a") as f:
172172
f.write("\n".join(packages))
173173
elif self.qtorgtk == "Qt":
174174
packages = [
175-
"pywebview[qt] sys_platform == 'linux'",
175+
"pywebview[qt]; sys_platform == 'linux'",
176176
"qtpy",
177177
"PyQt6",
178178
"PyQt6-WebEngine",

0 commit comments

Comments
 (0)