Skip to content

Commit

Permalink
style: address some linter warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
aravinda0 committed Nov 21, 2023
1 parent 5680f4d commit a1fc8ca
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/qtile_bonsai/layout.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

import itertools
import re
from typing import Callable
from typing import Callable, ClassVar

from libqtile.backend.base import Window
from libqtile.backend.base.window import Window
from libqtile.config import ScreenRect
from libqtile.layout.base import Layout
from libqtile.log_utils import logger
Expand All @@ -26,7 +26,7 @@

class Bonsai(Layout):
level_specific_config_format = re.compile(r"^L(\d+)\.(.+)")
defaults = [
defaults: ClassVar = [
(
"window.margin",
0,
Expand Down

0 comments on commit a1fc8ca

Please sign in to comment.