Skip to content

Commit

Permalink
🐛 fix renovate ruff update
Browse files Browse the repository at this point in the history
  • Loading branch information
manuel-sommer committed Nov 8, 2024
1 parent e7f57ae commit eeeaaca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion dojo/api_v2/serializers.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import os
import re
from datetime import datetime
import collections

import six
import tagulous
Expand Down Expand Up @@ -281,7 +282,7 @@ def _pop_tags(self, validated_data):
return (to_be_tagged, validated_data)


class RequestResponseDict(list):
class RequestResponseDict(collections.UserList):
def __init__(self, *args, **kwargs):
pretty_print = kwargs.pop("pretty_print", True)
list.__init__(self, *args, **kwargs)
Expand Down
2 changes: 1 addition & 1 deletion requirements-lint.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ruff==0.7.2
ruff==0.7.3

0 comments on commit eeeaaca

Please sign in to comment.