Guillaume GRABÉ
Guillaume GRABÉ
Same here, would love this
You can quickfix it in site-packages/defectdojo_api/defectdojo.py Replace: `if host.split('/') > 3:` By: `if len(host.split('/')) > 3:` or build it from GitHub :)
> More than half of the changes in the PR seem to be cosmetic. Would it be possible to revert these cosmetic changes so it becomes easier to digest and...
Thank you for the detailed feedback! I've addressed all three concerns: 1. **Cosmetic changes**: Reverted in commit c5135d8c7 2. **Duplicate code path**: Refactored to use single path with conditionals in...