Skip to content

Commit

Permalink
style: minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jx11r committed Sep 24, 2023
1 parent f58f74a commit 28d908c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions core/bar/shapes.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
from libqtile.bar import CALCULATED
from libqtile.lazy import lazy

from core.bar.base import base, symbol, powerline, rectangle
from core.bar.base import base, powerline, rectangle, symbol
from extras import Clock, GroupBox, TextBox, modify, widget
from utils.palette import palette
from utils.config import cfg
from utils.palette import palette

bar = {
"background": palette.base,
Expand Down
2 changes: 1 addition & 1 deletion core/hooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from core.screens import screens

bars = [screen.top for screen in screens]
margins = [sum(bar.margin) if bar else -1 for bar in bars] # type: ignore
margins = [sum(bar.margin) if bar else -1 for bar in bars]


@hook.subscribe.startup
Expand Down
2 changes: 1 addition & 1 deletion utils/config.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import json
from dataclasses import asdict, dataclass
from os import getcwd, environ
from os import environ, getcwd
from os.path import exists, expanduser, join


Expand Down

0 comments on commit 28d908c

Please sign in to comment.