Fixed flake8 issues in networking, plugins and profiles.

This commit is contained in:
Anton Hvornum 2021-11-01 12:03:40 +00:00
parent 0c4ba29978
commit b573421df2
3 changed files with 5 additions and 4 deletions

View File

@ -4,7 +4,7 @@ import socket
import struct
from collections import OrderedDict
from .exceptions import *
from .exceptions import HardwareIncompatibilityError
from .general import SysCommand
from .output import log
from .storage import storage
@ -30,7 +30,7 @@ def list_interfaces(skip_loopback=True):
def check_mirror_reachable():
log("Testing connectivity to the Arch Linux mirrors ...", level=logging.INFO)
if (exit_code := SysCommand("pacman -Sy").exit_code) == 0:
if SysCommand("pacman -Sy").exit_code == 0:
return True
elif os.geteuid() != 0:
log("check_mirror_reachable() uses 'pacman -Sy' which requires root.", level=logging.ERROR, fg="red")

View File

@ -65,7 +65,7 @@ def import_via_path(path :str, namespace=None): # -> module (not sure how to wri
def find_nth(haystack, needle, n):
start = haystack.find(needle)
while start >= 0 and n > 1:
start = haystack.find(needle, start+len(needle))
start = haystack.find(needle, start + len(needle))
n -= 1
return start

View File

@ -1,6 +1,7 @@
import hashlib
import importlib.util
import json
import os
import re
import ssl
import sys
@ -10,7 +11,7 @@ import urllib.request
from typing import Optional
from .general import multisplit
from .networking import *
from .networking import list_interfaces
from .storage import storage