Skip to content

Commit e164759

Browse files
committed
fix line too long error in scanpipe/models.py
Signed-off-by: Aayush Kumar <aayush214.kumar@gmail.com>
1 parent 8614382 commit e164759

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

scanpipe/models.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2690,7 +2690,10 @@ class CodebaseResource(
26902690
max_length=2000,
26912691
null=True,
26922692
blank=True,
2693-
help_text="Path of the immediate parent directory of this resource. Its '.' for top-level resources.",
2693+
help_text=_(
2694+
"Path of the immediate parent directory of a resource. "
2695+
"For top level resources the value is '.'"
2696+
),
26942697
)
26952698

26962699
status = models.CharField(

0 commit comments

Comments
 (0)