flake8 fixes: unused imports and f-strings without vars

This commit is contained in:
Erik Sundell
2021-10-28 09:37:50 +02:00
parent 39ed51b841
commit a64f242b61
11 changed files with 2 additions and 12 deletions

View File

@@ -13,7 +13,6 @@ tljh-config show firstlevel.second_level
"""
import argparse
import asyncio
from collections.abc import Sequence, Mapping
from copy import deepcopy
import os

View File

@@ -16,7 +16,6 @@ import bcrypt
import pluggy
import requests
from requests.packages.urllib3.exceptions import InsecureRequestWarning
from getpass import getpass
from tljh import (
apt,
@@ -26,7 +25,6 @@ from tljh import (
systemd,
traefik,
user,
utils
)
from .config import (
CONFIG_DIR,

View File

@@ -5,7 +5,6 @@ JupyterHub config for the littlest jupyterhub.
from glob import glob
import os
from systemdspawner import SystemdSpawner
from tljh import configurer
from tljh.config import INSTALL_PREFIX, USER_ENV_PREFIX, CONFIG_DIR
from tljh.utils import get_plugin_manager