diff --git a/src/twomartens/masterthesis/main.py b/src/twomartens/masterthesis/main.py index 743fa5a..8be2729 100644 --- a/src/twomartens/masterthesis/main.py +++ b/src/twomartens/masterthesis/main.py @@ -22,6 +22,8 @@ Functions: """ import argparse +import gc + def main() -> None: """ @@ -245,4 +247,5 @@ def _prepare(args: argparse.Namespace) -> None: if __name__ == "__main__": + gc.set_debug(gc.DEBUG_LEAK) main()