Skip to content

Commit 4533cea

Browse files
minor improvement in display of table doc strings
1 parent ae53cdd commit 4533cea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

datajoint/schema.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ def process_table_class(self, table_class, context, assert_declared=False):
193193

194194
# add table definition to the doc string
195195
if isinstance(table_class.definition, str):
196-
table_class.__doc__ = ((table_class.__doc__ or "") + "\n\nTable definition:\n"
196+
table_class.__doc__ = ((table_class.__doc__ or "") + "\nTable definition:\n\n"
197197
+ table_class.describe(printout=False, context=context))
198198

199199
# fill values in Lookup tables from their contents property

0 commit comments

Comments
 (0)