onuratakan / gpt-computer-assistant

gpt-4o for windows, macos and linux
MIT License
4.75k stars 441 forks source link

feat: add black formatter #66

Closed Hryurt closed 4 weeks ago

Hryurt commented 4 weeks ago

Description

This PR introduces the black code formatter to our repository to ensure consistent code style and formatting across the project.

Changes

  1. Install Black: Added black as a dependency to our project.
    • Updated requirements.txt or project.toml to include black.
  2. Configuration: Created a project.toml file to configure black with our preferred formatting rules.
    • Set line-length to 120 characters.
    • Included all .py and .pyi files for formatting.
  3. Formatting: Applied black formatting to the entire codebase.
onuratakan commented 4 weeks ago

Thank you so much for this awesome work.