Skip to content

Commit d578f97

Browse files
committed
Break lines
1 parent ec9431f commit d578f97

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/aind_data_schema/components/identifiers.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,8 @@ def _ensure_commit_hash_or_version(self) -> "Code":
111111
"""Ensure that at least one of commit_hash or version is provided for code identification"""
112112
if not self.commit_hash and not self.version:
113113
warnings.warn(
114-
"Neither commit_hash nor version provided for Code. It's recommended to provide at least one to ensure reproducibility. In the future, we will require at least one of these fields."
114+
"Neither commit_hash nor version provided for Code. "
115+
"It's recommended to provide at least one to ensure reproducibility. "
116+
"In the future, we will require at least one of these fields."
115117
)
116118
return self

0 commit comments

Comments
 (0)