style: Format code with black and isort

This commit is contained in:
deepsource-autofix[bot] 2023-08-06 21:55:19 +00:00 committed by GitHub
parent 0ec3e62c03
commit 7cad46cf8a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 12 additions and 7 deletions

View File

@ -1,13 +1,14 @@
# To run from the root project directory, run the following command: # To run from the root project directory, run the following command:
# python -m src.__main__ # python -m src.__main__
from loguru import logger
from .utils import upload, delete, utils
import argparse import argparse
import os import os
import dotenv
from sys import exit, stderr
from pathlib import Path from pathlib import Path
from sys import exit, stderr
import dotenv
from loguru import logger
from .utils import delete, upload, utils
TOKEN = None TOKEN = None
ACCOUNT_ID = None ACCOUNT_ID = None

View File

@ -1,6 +1,7 @@
# This is a scriprt to undo the changes made by adblock-zerotrust.py # This is a scriprt to undo the changes made by adblock-zerotrust.py
import requests import requests
from . import utils from . import utils

View File

@ -1,7 +1,9 @@
import requests
from . import utils
import pathlib import pathlib
import requests
from . import utils
def get_blocklists(hosts_path: str = None): def get_blocklists(hosts_path: str = None):
blocklists = [] blocklists = []

View File

@ -1,5 +1,6 @@
import pathlib import pathlib
import re import re
import requests import requests