summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKrzysztof Majk <krzysztof.majk@atamari.pl>2019-12-15 22:59:08 +0100
committerAndreas Rumpf <rumpf_a@web.de>2019-12-15 22:59:08 +0100
commite4e74a5565fe4162caf7e4ed713824b4a8643622 (patch)
tree4a5e27aa2af4f355c6d17c09253ce687972a5042
parent20a59da401dc9252707bfe57edbec8f08a7a0973 (diff)
downloadNim-e4e74a5565fe4162caf7e4ed713824b4a8643622.tar.gz
remove unused import (#12900)
-rw-r--r--lib/pure/collections/deques.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/collections/deques.nim b/lib/pure/collections/deques.nim
index a9f8cd3c8..0995b082b 100644
--- a/lib/pure/collections/deques.nim
+++ b/lib/pure/collections/deques.nim
@@ -52,7 +52,7 @@
 ## * `channels module <channels.html>`_ for inter-thread communication
 
 
-import math, typetraits
+import math
 
 type
   Deque*[T] = object