diff --git a/DG_Approximation.py b/DG_Approximation.py
index 5434a6f5c2de84344162cdc9f60db0cfa2657017..99ab93ee44b97fed4a7ebd3fd92ab35e9e614719 100644
--- a/DG_Approximation.py
+++ b/DG_Approximation.py
@@ -20,12 +20,6 @@ TODO: Discuss descriptions (matrices, cfl number, right-hand side,
     limiting slope, basis, wavelet, etc.)
 TODO: Discuss referencing info on SSPRK3
 
-TODO: Ask the meaning of the shifted bounds in Boxplot (Modified script)
-    -> Done (ignore for now)
-TODO: Ask whether the indices for the wavelet calculation are i or i+1
-    -> Done (each cell is multiplied with left projection)
-TODO: Ask why wavelet matrix has unset ghost cells -> Done (probably)
-
 Urgent:
 TODO: Fix indexing issue in wavelet coefficient calculation
 TODO: Enforce mesh with 2^n cells
@@ -37,8 +31,6 @@ TODO: Induce shift in IC class
 TODO: Give option to set discontinuity to cell boundary
 TODO: Fix typo in LinearAbsolute
 TODO: Introduce middle_factor for two-sided Heaviside
-TODO: Adapt TCD from Soraya
-    (Dropbox->...->TEST_troubled-cell-detector->Troubled_Cell_Detector) -> Done
 TODO: Move plot_approximation_results() into plotting script
 TODO: Improve file naming (e.g. use '.' instead of '__')
 TODO: Check whether ghost cells are handled/set correctly
diff --git a/Troubled_Cell_Detector.py b/Troubled_Cell_Detector.py
index b5978ecb096e51d149dd7b377ca1ddf260e5e0ce..af30a1f302c9a37e716665d82f38365122b4f72c 100644
--- a/Troubled_Cell_Detector.py
+++ b/Troubled_Cell_Detector.py
@@ -2,17 +2,6 @@
 """
 @author: Laura C. Kühle, Soraya Terrab (sorayaterrab)
 
-TODO: Give option to choose from multiwavelet degrees (first, last or
-    highest magnitude) -> Done
-TODO: Change method of calculating quartiles -> Done
-TODO: Include overlapping cells in quartile calculation (if needed) -> Done
-TODO: Determine max_value for Theoretical only over highest degree
-    -> Done (now optional)
-TODO: Check if indexing in wavelets is correct -> Done
-TODO: Combine get_cells() and _get_cells() -> Done
-TODO: Check coarse_projection calculation for indexing errors -> Done
-TODO: Adjust Boxplot approach (adjacent cells, outer fence, etc.) -> Done
-
 """
 from abc import ABC, abstractmethod
 import numpy as np