Fixed problems with import
This commit is contained in:
parent
da17e9ff78
commit
57de9f75ba
2 changed files with 4 additions and 4 deletions
|
@ -1,3 +1,3 @@
|
||||||
from simplePrintr import SimplePrintr
|
from .simplePrintr import SimplePrintr
|
||||||
from itterPrintr import ItterPrintr
|
from .itterPrintr import ItterPrintr
|
||||||
from ellipsisPrintr import EllipsisPrintr
|
from .ellipsisPrintr import EllipsisPrintr
|
|
@ -1,4 +1,4 @@
|
||||||
class EllipsisPrinter():
|
class EllipsisPrintr():
|
||||||
def __init__(self, string, max=5):
|
def __init__(self, string, max=5):
|
||||||
self.string = string
|
self.string = string
|
||||||
self.max = max
|
self.max = max
|
||||||
|
|
Reference in a new issue