From 6f06a808ac8bbfc6398b1ad3467b05843c1c6d53 Mon Sep 17 00:00:00 2001
From: David Hendriks <davidhendriks93@gmail.com>
Date: Tue, 10 Dec 2019 15:45:43 +0000
Subject: [PATCH] updated todo list and small change to function

---
 TODO.org                         | 31 +++++++++++++++++++++++++++++++
 binarycpython/utils/functions.py |  1 -
 2 files changed, 31 insertions(+), 1 deletion(-)
 create mode 100644 TODO.org

diff --git a/TODO.org b/TODO.org
new file mode 100644
index 000000000..63e4c14a6
--- /dev/null
+++ b/TODO.org
@@ -0,0 +1,31 @@
+* To do list
+
+** Structure:
+*** TODO Make sure the structure is logical and clear
+
+*** TODO Follow tutorials on how to properly package the code;
+- [ ] https://packaging.python.org/tutorials/packaging-projects/
+- [ ] https://realpython.com/python-modules-packages/
+- [ ] https://python-packaging.readthedocs.io/en/latest/
+- [ ] https://python-packaging-tutorial.readthedocs.io/en/latest/
+
+** formatting:
+*** TODO Make a routine to automatically format the code using the Black formatter\
+
+** Documentation:
+*** TODO Properly set up the doc generation
+
+*** TODO Have this on readthedocs.
+
+
+
+** Features:
+*** Help functionality
+**** TODO Add help functionality to the module by calling the binary_c help api
+
+*** Floors Stroopwafel
+**** TODO Implement the code that FLoor will provide 
+
+*** Parallelization
+**** TODO Look into ways of parallelizing the code to generate populations. 
+
diff --git a/binarycpython/utils/functions.py b/binarycpython/utils/functions.py
index d7fd123a3..07873c3f3 100644
--- a/binarycpython/utils/functions.py
+++ b/binarycpython/utils/functions.py
@@ -16,7 +16,6 @@ def create_arg_string(arg_dict):
     arg_string = arg_string.strip()
     return arg_string
 
-
 def get_defaults():
     """
     Function that calls the binaryc get args function and cast it into a dictionary
-- 
GitLab