about summary refs log tree commit diff
path: root/universe/ac_types/dict.py
diff options
context:
space:
mode:
Diffstat (limited to 'universe/ac_types/dict.py')
-rw-r--r--universe/ac_types/dict.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/universe/ac_types/dict.py b/universe/ac_types/dict.py
deleted file mode 100644
index 9975ec8a970f..000000000000
--- a/universe/ac_types/dict.py
+++ /dev/null
@@ -1,10 +0,0 @@
-# Naming options for this module:
-# - map (like Elixir and standard.el): Overwrites python's built-in `map` function.
-# - dict: Overwrites python's built-in `dict` function.
-
-
-def take(ks, xs):
-    result = {}
-    for k in ks:
-        result[k] = xs[k]
-    return result