Skip to content

Commit 7500b64

Browse files
committed
Sort and streamline imports
Signed-off-by: Philippe Ombredanne <pombredanne@nexb.com>
1 parent 93f046a commit 7500b64

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

src/formattedcode/output_cyclonedx.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,22 +8,24 @@
88
# See https://aboutcode.org for more information about nexB OSS projects.
99
#
1010

11-
import attr
12-
import click
1311
import json
1412
import re
1513
import uuid
1614
from datetime import datetime
1715
from enum import Enum
18-
from lxml import etree
1916

17+
import attr
18+
from lxml import etree
2019

2120
from commoncode.cliutils import OUTPUT_GROUP
2221
from commoncode.cliutils import PluggableCommandLineOption
2322
from formattedcode import FileOptionType
2423
from plugincode.output import OutputPlugin
2524
from plugincode.output import output_impl
26-
from typing import FrozenSet, List, Optional, Tuple
25+
from typing import FrozenSet
26+
from typing import List
27+
from typing import Optional
28+
from typing import Tuple
2729

2830

2931
def _get_set_of_known_licenses_and_spdx_license_ids() -> Tuple[List, FrozenSet[str]]:

0 commit comments

Comments
 (0)