forked from Mirror/pmbootstrap
pmb.helpers.aportupgrade: Import urllib.parse explicitly (MR 2258)
Apparently importing urllib doesn't by itself import the urllib.parse module, which mypy complains about. Reference: https://stackoverflow.com/a/41502702/9315690
This commit is contained in:
parent
3aad061c68
commit
bcfab8cfc3
1 changed files with 1 additions and 1 deletions
|
@ -5,7 +5,7 @@ import fnmatch
|
|||
import logging
|
||||
import os
|
||||
import re
|
||||
import urllib
|
||||
import urllib.parse
|
||||
from typing import Optional
|
||||
|
||||
import pmb.helpers.file
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue