File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ export interface CreateCodeContextOpts {
8888 *
8989 * @default python
9090 */
91- // eslint-disable-next-line @typescript-eslint/ban-types
91+ /* eslint-disable @typescript-eslint/ban-types */
9292 language ?:
9393 | 'python'
9494 | 'javascript'
@@ -97,6 +97,7 @@ export interface CreateCodeContextOpts {
9797 | 'java'
9898 | 'bash'
9999 | ( string & { } )
100+ /* eslint-enable @typescript-eslint/ban-types */
100101 /**
101102 * Timeout for the request in **milliseconds**.
102103 *
@@ -157,7 +158,7 @@ export class Sandbox extends BaseSandbox {
157158 *
158159 * If not defined, the default Python context is used.
159160 */
160- // eslint-disable-next-line @typescript-eslint/ban-types
161+ /* eslint-disable @typescript-eslint/ban-types */
161162 language ?:
162163 | 'python'
163164 | 'javascript'
@@ -166,6 +167,7 @@ export class Sandbox extends BaseSandbox {
166167 | 'java'
167168 | 'bash'
168169 | ( string & { } )
170+ /* eslint-enable @typescript-eslint/ban-types */
169171 }
170172 ) : Promise < Execution >
171173 /**
You can’t perform that action at this time.
0 commit comments