Skip to content

Commit fe5120d

Browse files
Merge pull request #8 from sebastienrousseauhsbc/main
Various fixes related to pylint warnings
2 parents e9cf9b8 + cb56a3d commit fe5120d

File tree

3 files changed

+144
-3
lines changed

3 files changed

+144
-3
lines changed

poetry.lock

Lines changed: 140 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ pytest-mock = "^3.14.0"
3030
[tool.poetry.scripts]
3131
encryption-helper = "encryption_helper.__main__:main"
3232

33+
[tool.poetry.group.dev.dependencies]
34+
pylint = "^3.2.6"
35+
3336
[build-system]
3437
requires = ["poetry-core>=1.0.0"]
3538
build-backend = "poetry.core.masonry.api"

tests/test___main__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import unittest
2-
from unittest.mock import patch, MagicMock
3-
import sys
2+
from unittest.mock import patch
43
from io import StringIO
54

65
# Import the main function from the __main__.py module

0 commit comments

Comments
 (0)