Skip to content

0.0.41

Choose a tag to compare

@rasmus-ohe rasmus-ohe released this 27 Sep 18:18
· 4 commits to main since this release

Added

  • Can now read benedict types
    • benedict is a dictionary that can handle nested dictionaries
  • New input variable for __call__
    • exit: bool
    • default: False
    • Exits the program after printing the debug message
  • Updated and added new dostrings to all functions and classes in fast_debugger.py
  • You can now import the FastDebugger class, instead of only importing fd; shown below
from FastDebugger import FastDebugger

fd = FastDebugger()

Changed

  • The config() function handles **kwargs differently
    • It was badly implemented before, and now it's fixed
  • Input parameters removed from the call() function, and replaced with **kwargs
    • The available **kwargs parameters are found in the __call__ function docstring

Full Changelog: 0.0.4...0.0.41