Skip to content

Commit 71ab4d7

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

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
@@ -2700,7 +2700,10 @@ class CodebaseResource(
27002700
max_length=2000,
27012701
null=True,
27022702
blank=True,
2703-
help_text="Path of the immediate parent directory of this resource. Its '.' for top-level resources.",
2703+
help_text=_(
2704+
"Path of the immediate parent directory of a resource. "
2705+
"For top level resources the value is '.'"
2706+
),
27042707
)
27052708

27062709
status = models.CharField(

0 commit comments

Comments
 (0)