We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69b812c commit 1ba0704Copy full SHA for 1ba0704
pythonic.el
@@ -233,9 +233,11 @@ print(json.dumps(yaml.safe_load(open(sys.argv[-1], 'r'))))
233
;; should appears once in the selection and all volumes
234
;; should be added to the alias list.
235
(volume (if (< 1 (length volumes))
236
- (if pythonic-docker-compose-service-name
237
- pythonic-docker-compose-service-name
238
- (assoc (completing-read "Service: " (mapcar 'car volumes) nil t) volumes))
+ (assoc
+ (if pythonic-docker-compose-service-name
+ pythonic-docker-compose-service-name
239
+ (completing-read "Service: " (mapcar 'car volumes) nil t))
240
+ volumes)
241
(car volumes)))
242
(service (car volume))
243
(sub-project (f-join project (cadr volume)))
0 commit comments