eric6/Plugins/CheckerPlugins/CodeStyleChecker/Security/Checks/awsHardcodedPassword.py

changeset 7628
f904d0eef264
parent 7622
384e2aa5c073
child 7923
91e843545d9a
equal deleted inserted replaced
7626:7f643d41464e 7628:f904d0eef264
11 # This is a modified version of the one found at 11 # This is a modified version of the one found at
12 # https://pypi.org/project/bandit-aws/. 12 # https://pypi.org/project/bandit-aws/.
13 # 13 #
14 # Original Copyright 2020 CMCRC (devcdt@cmcrc.com) 14 # Original Copyright 2020 CMCRC (devcdt@cmcrc.com)
15 # 15 #
16 # License: GPLv3 16 # Original License: GPLv3
17 # 17 #
18 18
19 from collections import Counter 19 from collections import Counter
20 import math 20 import math
21 import re 21 import re
22 import string 22 import string
23
23 24
24 def getChecks(): 25 def getChecks():
25 """ 26 """
26 Public method to get a dictionary with checks handled by this module. 27 Public method to get a dictionary with checks handled by this module.
27 28

eric ide

mercurial