It is recommended to properly indent docstrings for readability.
md5
BAN-B303Use of insecure MD2, MD4, MD5, or SHA1 hash functions should be avoided. Using more secure algorithms like SHA256 or SHA512.
Use of insecure cipher or cipher mode. Replace with a known secure cipher such as AES.
Use of insecure cipher or cipher mode. Replace with a known secure cipher such as AES.
ManyToManyField
found PTC-W0905Having a nullable many-to-many field doesn't do anything. The declaration of a ManyToManyField
causes the creation of an intermediate table to hold the relationship. Each relation between the two tables is an entry in this new table. By definition, having no relations between two tables would mean no entries in this table. There's no use of null
. Consider removing null=True
from this property.