The missing comma between "distribution" and "sharing_group_id" means these two string literals get concatenated into a single string:
>>> blocked_fields = ["distribution" "sharing_group_id"]
>>> print(blocked_fields)
['distributionsharing_group_id']
|
blocked_fields = ["distribution" "sharing_group_id"] |
No idea how often this can cause an issue, I just noticed it while looking at the source code when working with PyMISP.
The missing comma between "distribution" and "sharing_group_id" means these two string literals get concatenated into a single string:
PyMISP/pymisp/mispevent.py
Line 1445 in ff8834f
No idea how often this can cause an issue, I just noticed it while looking at the source code when working with PyMISP.