File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -236,7 +236,7 @@ print(json.dumps(yaml.safe_load(open(sys.argv[-1], 'r'))))
236
236
(assoc
237
237
(if pythonic-docker-compose-service-name
238
238
pythonic-docker-compose-service-name
239
- (completing-read " Service: " (mapcar 'car volumes) nil t ))
239
+ (completing-read " Service: " (mapcar # 'car volumes) nil t ))
240
240
volumes)
241
241
(car volumes)))
242
242
(service (car volume))
@@ -266,7 +266,7 @@ arguments passed to `call-process'. CWD will be working directory
266
266
for running process."
267
267
(let ((default-directory (pythonic-aliased-path (or cwd default-directory))))
268
268
(python-shell-with-environment
269
- (apply 'process-file pythonic-interpreter file buffer display args))))
269
+ (apply # 'process-file pythonic-interpreter file buffer display args))))
270
270
271
271
(cl-defun pythonic-start-process (&key process buffer args cwd filter sentinel (query-on-exit t ))
272
272
" Pythonic wrapper around `start-process' .
@@ -280,7 +280,7 @@ function if necessary. QUERY-ON-EXIT will be corresponding
280
280
process flag."
281
281
(let ((default-directory (pythonic-aliased-path (or cwd default-directory))))
282
282
(python-shell-with-environment
283
- (let ((process (apply 'start-file-process process buffer pythonic-interpreter args)))
283
+ (let ((process (apply # 'start-file-process process buffer pythonic-interpreter args)))
284
284
(when filter
285
285
(set-process-filter process filter))
286
286
(when sentinel
You can’t perform that action at this time.
0 commit comments