File tree Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -348,6 +348,18 @@ def write_class_file(name,
348
348
prefix = None ):
349
349
props = reorder_props (props = props )
350
350
351
+ # generate the R help pages for each of the Dash components that we
352
+ # are transpiling -- this is done to avoid using Roxygen2 syntax,
353
+ # we may eventually be able to generate similar documentation using
354
+ # doxygen and an R plugin, but for now we'll just do it on our own
355
+ # from within Python
356
+ write_help_file (
357
+ name ,
358
+ props ,
359
+ description ,
360
+ prefix
361
+ )
362
+
351
363
import_string = \
352
364
"# AUTO GENERATED FILE - DO NOT EDIT\n \n "
353
365
class_string = generate_class_string (
@@ -363,18 +375,6 @@ def write_class_file(name,
363
375
f .write (import_string )
364
376
f .write (class_string )
365
377
366
- # generate the R help pages for each of the Dash components that we
367
- # are transpiling -- this is done to avoid using Roxygen2 syntax,
368
- # we may eventually be able to generate similar documentation using
369
- # doxygen and an R plugin, but for now we'll just do it on our own
370
- # from within Python
371
- write_help_file (
372
- name ,
373
- props ,
374
- description ,
375
- prefix
376
- )
377
-
378
378
print ('Generated {}' .format (file_name ))
379
379
380
380
You can’t perform that action at this time.
0 commit comments