Skip to content

Commit 205af36

Browse files
committed
use instead of None to follow code format
Signed-off-by: Aayush Kumar <[email protected]>
1 parent 48fcce6 commit 205af36

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scanpipe/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2575,7 +2575,7 @@ class CodebaseResourceTreeView(ConditionalLoginRequired, generic.DetailView):
25752575
def get(self, request, *args, **kwargs):
25762576
slug = self.kwargs.get("slug")
25772577
project = get_object_or_404(Project, slug=slug)
2578-
path = request.GET.get("path", None)
2578+
path = request.GET.get("path", "")
25792579

25802580
base_qs = (
25812581
CodebaseResource.objects.filter(project=project, parent_path=path)

0 commit comments

Comments
 (0)