Skip to content

Commit f754bf3

Browse files
COLLONVAL Fredericfcollonval
authored andcommitted
BUG forget default value for anchor enum
1 parent 32e6434 commit f754bf3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sidecar/sidecar.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ class Sidecar(Output):
2323
_view_module = Unicode(module_name).tag(sync=True)
2424
_view_module_version = Unicode(EXTENSION_SPEC_VERSION).tag(sync=True)
2525
title = Unicode('Sidecar').tag(sync=True)
26-
anchor = CaselessStrEnum(['main', 'right'], allow_none=False).tag(sync=True)
26+
anchor = CaselessStrEnum(['main', 'right'], default_value='main', allow_none=False).tag(sync=True)

0 commit comments

Comments
 (0)