Skip to content

Commit

Permalink
Add sysinfo to base class
Browse files Browse the repository at this point in the history
  • Loading branch information
tomlin7 committed May 6, 2022
1 parent ad163ee commit dbe909d
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/lib/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,20 @@
from datetime import datetime

from .settings import Settings
from .utils.binder import Binder
from .utils import Binder
from .events import Events

from .components.views.source_control import Git
from .styles import Style
from .utils import SysInfo

from .components.views.source_control import Git

class Base:
def __init__(self, root, *args, **kwargs):
self.root = root
self.base = self
self.appdir = root.appdir

self.sysinfo = SysInfo(self)
self.settings = Settings(self)
self.bindings = self.settings.bindings

Expand Down

0 comments on commit dbe909d

Please sign in to comment.