Skip to content

Commit

Permalink
Format Python code with Ruff push (#242)
Browse files Browse the repository at this point in the history
There appear to be some python formatting errors in
eb77147.
This pull request uses the Ruff formatter to fix some of these issues.
  • Loading branch information
Diapolo10 authored Dec 3, 2024
2 parents eb77147 + c52b166 commit e1be8fe
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions src/escapyde/colours.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,23 @@
from escapyde.ansi import AnsiEscape

__all__ = (
'FBLACK', 'FRED', 'FGREEN', 'FYELLOW',
'FBLUE', 'FMAGENTA', 'FCYAN', 'FWHITE',
'BBLACK', 'BRED', 'BGREEN', 'BYELLOW',
'BBLUE', 'BMAGENTA', 'BCYAN', 'BWHITE',
'BBLACK',
'BBLUE',
'BCYAN',
'BGREEN',
'BMAGENTA',
'BRED',
'BWHITE',
'BYELLOW',
'CLEAR',
'FBLACK',
'FBLUE',
'FCYAN',
'FGREEN',
'FMAGENTA',
'FRED',
'FWHITE',
'FYELLOW',
)

sequence_table: dict[str, int | Sequence[int]] = {
Expand Down

0 comments on commit e1be8fe

Please sign in to comment.