diff options
author | Krzysztof Majk <krzysztof.majk@atamari.pl> | 2019-12-15 22:59:08 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2019-12-15 22:59:08 +0100 |
commit | e4e74a5565fe4162caf7e4ed713824b4a8643622 (patch) | |
tree | 4a5e27aa2af4f355c6d17c09253ce687972a5042 | |
parent | 20a59da401dc9252707bfe57edbec8f08a7a0973 (diff) | |
download | Nim-e4e74a5565fe4162caf7e4ed713824b4a8643622.tar.gz |
remove unused import (#12900)
-rw-r--r-- | lib/pure/collections/deques.nim | 2 |
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 |