Skip to content

Commit cac8783

Browse files
authored
NO-JIRA: Fix mend vulnerabilitie (#93)
1 parent ed3b49b commit cac8783

File tree

3 files changed

+26
-67
lines changed

3 files changed

+26
-67
lines changed

poetry.lock

Lines changed: 24 additions & 61 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,13 @@ readme = 'README.md'
2828
version = '0.1.0'
2929

3030
[tool.poetry.dependencies]
31-
pyfiglet = '>=0.8.0'
3231
python = '>=3.8'
33-
setuptools = '69.0.3'
3432
toml = '>=0.10.2'
3533

3634
[tool.poetry.group]
3735
[tool.poetry.group.dev]
3836
[tool.poetry.group.dev.dependencies]
39-
black = "24.3.0"
37+
black = "24.8.0"
4038
coverage = '>=7.3.3'
4139
licenseheaders = '>=0.8.8'
4240
mypy = '>=1.7.1'

src/pysonar_scanner/environment.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
from __future__ import annotations
2121
import os
2222
import platform
23-
import pyfiglet
2423
import shutil
2524
import urllib.request
2625
from urllib.error import HTTPError
@@ -65,8 +64,7 @@ def setup(self):
6564
)
6665
self.cfg.sonar_scanner_executable_path = os.path.join(sonar_scanner_home, "bin", "sonar-scanner")
6766

68-
ascii_banner = pyfiglet.figlet_format("Sonar Scanner")
69-
self.log.info(ascii_banner)
67+
self.log.info("Sonar Scanner for Python")
7068

7169
def _get_release(self) -> str:
7270
return platform.uname().release

0 commit comments

Comments
 (0)