Corrected list type hint for Python 3.8.

- CI failed on Focal due Python version unable to understand list[str].
This commit is contained in:
Carlos Nihelton 2021-11-08 19:03:10 -03:00
parent eb6bd2d263
commit f9d3877feb
1 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ import os
import shutil import shutil
import logging import logging
import re import re
from typing import Tuple from typing import Tuple, List
import apt import apt
import apt_pkg import apt_pkg
@ -85,7 +85,7 @@ class ConfigureController(SubiquityController):
log.error("Failed to modify %s file. %s", cmdFile, err) log.error("Failed to modify %s file. %s", cmdFile, err)
return ("", False) return ("", False)
def __update_locale_cmd(self, lang) -> list[str]: def __update_locale_cmd(self, lang) -> List[str]:
""" Adds mocking cli to update-locale if in dry-run. """ """ Adds mocking cli to update-locale if in dry-run. """
updateLocCmd = ["update-locale", "LANG={}".format(lang)] updateLocCmd = ["update-locale", "LANG={}".format(lang)]
if self.app.opts.dry_run: if self.app.opts.dry_run: