Skip to content

Commit

Permalink
Added __init__'s for explicit imports
Browse files Browse the repository at this point in the history
  • Loading branch information
stiliyantonev committed Apr 7, 2022
1 parent e508581 commit ba33ee3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
5 changes: 5 additions & 0 deletions core/abstract/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
from .index_manager import IndexManager;
from .handler_files import FileHandler;
from .tag_manager import TagManager;
from .real_files import FileManager;
from .virtual_files import VirtualManager;
2 changes: 2 additions & 0 deletions view_widgets/abstract/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
from .scroller import Scroller;
from .grid_widget import Grid;
1 change: 1 addition & 0 deletions view_widgets/abstract/scroller.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from tkinter import *
import tkinter.ttk as ttk;

class Scroller:
def __init__(self,parentContainer):
Expand Down

0 comments on commit ba33ee3

Please sign in to comment.