Skip to content

Commit

Permalink
Sort imports using isort
Browse files Browse the repository at this point in the history
  • Loading branch information
diabonas committed Nov 4, 2021
1 parent e65db90 commit 13d7a99
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 10 deletions.
3 changes: 2 additions & 1 deletion cli/add.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# SPDX-License-Identifier: MIT

import click
import json

import click
import requests
from lxml import etree

Expand Down
3 changes: 2 additions & 1 deletion cli/strip_markdown.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# SPDX-License-Identifier: MIT

import click
import json

import click
from lxml import etree
from markdown import markdown

Expand Down
3 changes: 2 additions & 1 deletion extractors/chromium.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# SPDX-License-Identifier: MIT

import click
import json
import re

import click
import requests
from lxml import etree

Expand Down
4 changes: 2 additions & 2 deletions extractors/gitlab.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# SPDX-License-Identifier: MIT

import click
import json
import re
import requests

import click
import requests

VECTORS = {
"NETWORK": "Remote",
Expand Down
3 changes: 2 additions & 1 deletion extractors/mozilla.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# SPDX-License-Identifier: MIT

import click
import json

import click
import requests
from lxml import etree

Expand Down
3 changes: 2 additions & 1 deletion extractors/nvd.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# SPDX-License-Identifier: MIT

import click
import json

import click
import requests

VECTORS = {
Expand Down
3 changes: 2 additions & 1 deletion extractors/oracle.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# SPDX-License-Identifier: MIT

import click
import json
import re

import click
import requests
from lxml import etree

Expand Down
3 changes: 2 additions & 1 deletion extractors/webkitgtk.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# SPDX-License-Identifier: MIT

import click
import json

import click
import requests
from lxml import etree

Expand Down
3 changes: 2 additions & 1 deletion trackertools
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 13d7a99

Please sign in to comment.