archive
/
Printr
Archived
1
Fork 0

Fixed problems with import

This commit is contained in:
Jake Howard 2015-09-26 14:56:49 +01:00
parent da17e9ff78
commit 57de9f75ba
2 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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