Skip to content

Commit

Permalink
module struct refracto to hide main module in injection
Browse files Browse the repository at this point in the history
  • Loading branch information
divi255 committed Aug 15, 2019
1 parent b58a85f commit 806acea
Show file tree
Hide file tree
Showing 19 changed files with 856 additions and 882 deletions.
2 changes: 1 addition & 1 deletion bin/pptop
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import curses
import os

from pptop import start
from pptop.core import start

exit_code = 1
try:
Expand Down
4 changes: 2 additions & 2 deletions doc/examples/pptopcontrib-listmodules/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__version__ = "0.1.6"
__version__ = '0.0.1'

from pptop import GenericPlugin, palette
from pptop.plugin import GenericPlugin, palette


class Plugin(GenericPlugin):
Expand Down
4 changes: 2 additions & 2 deletions doc/plugin_development.rst
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Class definition
__version__ = '0.0.1'
from pptop import GenericPlugin, palette
from pptop.plugin import GenericPlugin, palette
class Plugin(GenericPlugin):
'''
Expand Down Expand Up @@ -212,7 +212,7 @@ handle entered value with method *self.handle_input(var, value, prev_value)*
All class methods
-----------------

.. automodule:: pptop
.. automodule:: pptop.plugin
:members:
.. autoclass:: GenericPlugin
:members:
Expand Down
Loading

0 comments on commit 806acea

Please sign in to comment.