Skip to content

Commit 12c866b

Browse files
committed
Fix python 3.8 compatibility.
This interferes with backporting and isn't necessary.
1 parent 4ae1884 commit 12c866b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

usr/lib/webapp-manager/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ def get_webapps(self):
169169
return webapps
170170

171171
@staticmethod
172-
def get_supported_browsers() -> list[Browser]:
172+
def get_supported_browsers():
173173
# type, name, exec, test
174174
return [Browser(BROWSER_TYPE_FIREFOX, "Firefox", "firefox", "/usr/bin/firefox"),
175175
Browser(BROWSER_TYPE_FIREFOX, "Firefox Developer Edition", "firefox-developer-edition", "/usr/bin/firefox-developer-edition"),

0 commit comments

Comments
 (0)