Skip to content

Commit 51a1c0b

Browse files
authored
Reorder importing order (#1854)
Signed-off-by: Tushar Goel <[email protected]>
1 parent ecdb4ad commit 51a1c0b

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

vulnerabilities/importers/__init__.py

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,25 @@
4444
from vulnerabilities.pipelines import pysec_importer
4545

4646
IMPORTERS_REGISTRY = [
47+
nvd_importer.NVDImporterPipeline,
48+
github_importer.GitHubAPIImporterPipeline,
49+
gitlab_importer.GitLabImporterPipeline,
50+
github_osv.GithubOSVImporter,
51+
pypa_importer.PyPaImporterPipeline,
52+
npm_importer.NpmImporterPipeline,
53+
nginx_importer.NginxImporterPipeline,
54+
pysec_importer.PyPIImporterPipeline,
55+
apache_tomcat.ApacheTomcatImporter,
56+
postgresql.PostgreSQLImporter,
57+
debian.DebianImporter,
58+
curl.CurlImporter,
59+
epss.EPSSImporter,
60+
vulnrichment.VulnrichImporter,
61+
alpine_linux_importer.AlpineLinuxImporterPipeline,
62+
ruby.RubyImporter,
63+
apache_kafka.ApacheKafkaImporter,
4764
openssl.OpensslImporter,
4865
redhat.RedhatImporter,
49-
debian.DebianImporter,
50-
postgresql.PostgreSQLImporter,
5166
archlinux.ArchlinuxImporter,
5267
ubuntu.UbuntuImporter,
5368
debian_oval.DebianOvalImporter,
@@ -59,25 +74,10 @@
5974
project_kb_msr2019.ProjectKBMSRImporter,
6075
suse_scores.SUSESeverityScoreImporter,
6176
elixir_security.ElixirSecurityImporter,
62-
apache_tomcat.ApacheTomcatImporter,
6377
xen.XenImporter,
6478
ubuntu_usn.UbuntuUSNImporter,
6579
fireeye.FireyeImporter,
66-
apache_kafka.ApacheKafkaImporter,
6780
oss_fuzz.OSSFuzzImporter,
68-
ruby.RubyImporter,
69-
github_osv.GithubOSVImporter,
70-
curl.CurlImporter,
71-
epss.EPSSImporter,
72-
vulnrichment.VulnrichImporter,
73-
pypa_importer.PyPaImporterPipeline,
74-
npm_importer.NpmImporterPipeline,
75-
nginx_importer.NginxImporterPipeline,
76-
gitlab_importer.GitLabImporterPipeline,
77-
github_importer.GitHubAPIImporterPipeline,
78-
nvd_importer.NVDImporterPipeline,
79-
pysec_importer.PyPIImporterPipeline,
80-
alpine_linux_importer.AlpineLinuxImporterPipeline,
8181
]
8282

8383
IMPORTERS_REGISTRY = {

0 commit comments

Comments
 (0)