zvibazak / termshape

Python library for drawing basic shapes on terminal
MIT License
4 stars 1 forks source link

ImportError: cannot import name 'get_triangle' from 'termshape' #3

Closed scriptprinter closed 4 years ago

scriptprinter commented 4 years ago
from termshape import get_triangle
print(get_triangle(10))

original function name:

def get_triangular(h,ch='*'):
    ...

the correct is:

from termshape import get_triangular
print(get_triangular(10))

changes in the README.md are necessary.

zvibazak commented 4 years ago

Fix.Thanks!

scriptprinter commented 4 years ago

Fix.Thanks!

(: