mirror of
https://github.com/cedricbonhomme/Stegano.git
synced 2025-06-28 11:16:14 +02:00
Improved code style.
This commit is contained in:
parent
9b216d9d59
commit
71f6c08c28
19 changed files with 335 additions and 253 deletions
|
@ -1,21 +1,29 @@
|
|||
import subprocess
|
||||
import sys
|
||||
|
||||
modules = ['stegano/tools.py',
|
||||
'stegano/lsb/lsb.py',
|
||||
'stegano/lsbset/lsbset.py',
|
||||
'stegano/lsbset/generators.py',
|
||||
'stegano/red/red.py',
|
||||
'stegano/exifHeader/exifHeader.py',
|
||||
'stegano/steganalysis/parity.py',
|
||||
'stegano/steganalysis/statistics.py']
|
||||
modules = [
|
||||
"stegano/tools.py",
|
||||
"stegano/lsb/lsb.py",
|
||||
"stegano/lsbset/lsbset.py",
|
||||
"stegano/lsbset/generators.py",
|
||||
"stegano/red/red.py",
|
||||
"stegano/exifHeader/exifHeader.py",
|
||||
"stegano/steganalysis/parity.py",
|
||||
"stegano/steganalysis/statistics.py",
|
||||
]
|
||||
|
||||
exit_codes = []
|
||||
for module in modules:
|
||||
rc = subprocess.call(['mypy', '--ignore-missing-imports',
|
||||
'--check-untyped-defs',
|
||||
'--follow-imports', 'skip', module],
|
||||
)
|
||||
rc = subprocess.call(
|
||||
[
|
||||
"mypy",
|
||||
"--ignore-missing-imports",
|
||||
"--check-untyped-defs",
|
||||
"--follow-imports",
|
||||
"skip",
|
||||
module,
|
||||
],
|
||||
)
|
||||
exit_codes.append(rc)
|
||||
|
||||
sys.exit(max(exit_codes))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue