summary refs log tree commit diff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2015-10-04 19:23:21 +0200
committerLudovic Courtès <ludo@gnu.org>2015-10-05 23:10:14 +0200
commite3302fec18c00f8e21f9c4df9d5728925835ff74 (patch)
treea96dba9e8342dd4544913e66d9f311a4fb63458e
parent025cc9a1ed08373c68b7926223900708dcabd0a3 (diff)
downloadguix-e3302fec18c00f8e21f9c4df9d5728925835ff74.tar.gz
import: pypi: Remove unused procedure.
* guix/import/pypi.scm (join): Remove.
-rw-r--r--guix/import/pypi.scm10
1 files changed, 0 insertions, 10 deletions
diff --git a/guix/import/pypi.scm b/guix/import/pypi.scm
index 06d21fea45..d04a68524d 100644
--- a/guix/import/pypi.scm
+++ b/guix/import/pypi.scm
@@ -37,16 +37,6 @@
   #:use-module (gnu packages python)
   #:export (pypi->guix-package))
 
-(define (join lst delimiter)
-  "Return a list that contains the elements of LST, each separated by
-DELIMETER."
-  (match lst
-    (() '())
-    ((elem)
-     (list elem))
-    ((elem . rest)
-     (cons* elem delimiter (join rest delimiter)))))
-
 (define (pypi-fetch name)
   "Return an alist representation of the PyPI metadata for the package NAME,
 or #f on failure."