File tree Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -15,5 +15,4 @@ API Reference
15
15
labscript.labscript
16
16
labscript.functions
17
17
labscript.base
18
- labscript.compiler
19
18
labscript.utils
Original file line number Diff line number Diff line change 25
25
_SAVE_GIT_INFO = LabConfig ().getboolean ("labscript" , "save_git_info" , fallback = False )
26
26
27
27
28
- # Note: This class name is chosen to work around a autosummary bug, see
29
- # https://github.com/sphinx-doc/sphinx/issues/11362 It could be reverted to just
30
- # ``Compiler`` once the bug is fixed.
31
- class _Compiler (object ):
28
+ class Compiler (object ):
32
29
"""Compiler singleton that saves relevant parameters during compilation of each shot"""
33
30
34
31
_instance = None
@@ -88,5 +85,5 @@ def reset(self):
88
85
self .compression = 'gzip' # set to 'gzip' for compression
89
86
90
87
91
- compiler = _Compiler ()
88
+ compiler = Compiler ()
92
89
"""The compiler instance"""
You can’t perform that action at this time.
0 commit comments