Skip to content

Commit

Permalink
fix: removed default as required is true
Browse files Browse the repository at this point in the history
  • Loading branch information
JayGhiya committed Oct 25, 2024
1 parent 96ee548 commit c835a3d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
class ConfluencePackage(BaseNode):
"""Represents a package in the codebase"""
package_objective = StringProperty(required=True)
package_implementation_summary = StringProperty(required=True,default="")
package_implementation_summary = StringProperty(required=True)

package_objective_embedding = ArrayProperty(FloatProperty())
package_implementation_summary_embedding = ArrayProperty(FloatProperty())
Expand Down

0 comments on commit c835a3d

Please sign in to comment.