diff --git a/cli/add.py b/cli/add.py index 59398c8..51522f0 100644 --- a/cli/add.py +++ b/cli/add.py @@ -1,7 +1,8 @@ # SPDX-License-Identifier: MIT -import click import json + +import click import requests from lxml import etree diff --git a/cli/strip_markdown.py b/cli/strip_markdown.py index f2de48c..0958de3 100644 --- a/cli/strip_markdown.py +++ b/cli/strip_markdown.py @@ -1,7 +1,8 @@ # SPDX-License-Identifier: MIT -import click import json + +import click from lxml import etree from markdown import markdown diff --git a/extractors/chromium.py b/extractors/chromium.py index 6fb79f4..23346b4 100644 --- a/extractors/chromium.py +++ b/extractors/chromium.py @@ -1,8 +1,9 @@ # SPDX-License-Identifier: MIT -import click import json import re + +import click import requests from lxml import etree diff --git a/extractors/gitlab.py b/extractors/gitlab.py index c42f194..0106109 100644 --- a/extractors/gitlab.py +++ b/extractors/gitlab.py @@ -1,10 +1,10 @@ # SPDX-License-Identifier: MIT -import click import json import re -import requests +import click +import requests VECTORS = { "NETWORK": "Remote", diff --git a/extractors/mozilla.py b/extractors/mozilla.py index 737e1e4..0dae53b 100644 --- a/extractors/mozilla.py +++ b/extractors/mozilla.py @@ -1,7 +1,8 @@ # SPDX-License-Identifier: MIT -import click import json + +import click import requests from lxml import etree diff --git a/extractors/nvd.py b/extractors/nvd.py index 37f1b4d..28f5e42 100644 --- a/extractors/nvd.py +++ b/extractors/nvd.py @@ -1,7 +1,8 @@ # SPDX-License-Identifier: MIT -import click import json + +import click import requests VECTORS = { diff --git a/extractors/oracle.py b/extractors/oracle.py index aff3818..28904c4 100644 --- a/extractors/oracle.py +++ b/extractors/oracle.py @@ -1,8 +1,9 @@ # SPDX-License-Identifier: MIT -import click import json import re + +import click import requests from lxml import etree diff --git a/extractors/webkitgtk.py b/extractors/webkitgtk.py index 7c79c76..891ad8c 100644 --- a/extractors/webkitgtk.py +++ b/extractors/webkitgtk.py @@ -1,7 +1,8 @@ # SPDX-License-Identifier: MIT -import click import json + +import click import requests from lxml import etree diff --git a/trackertools b/trackertools index 04fc439..d61edab 100755 --- a/trackertools +++ b/trackertools @@ -2,8 +2,9 @@ # SPDX-License-Identifier: MIT import click -from extractors import extract + from cli import add, strip_markdown +from extractors import extract @click.group()