Refactor codebase for PEP8 compliance #249

Merged
sirdog3355 merged 1 commit from refact/pep8 into dev 2026-02-26 21:46:25 -05:00
sirdog3355 commented 2026-02-26 21:13:45 -05:00 (Migrated from github.com)

What it says on the tin.

Most corrections were:

  • Check True more pythonically (e.g if X is True: -> if X:)
  • Check False more pythonically (e.g if X is False: -> if not X:)
  • Making class names pascal case (e.g take_l_monitor -> TakeLMonitor)

Closes #247

What it says on the tin. Most corrections were: - Check `True` more pythonically (e.g `if X is True:` -> `if X:`) - Check `False` more pythonically (e.g `if X is False:` -> `if not X:`) - Making class names pascal case (e.g `take_l_monitor` -> `TakeLMonitor`) Closes #247
Sign in to join this conversation.
No description provided.