pynt icon indicating copy to clipboard operation
pynt copied to clipboard

Py2 is mixed with Py3

Open jabbalaci opened this issue 2 years ago • 0 comments

In the README example, Python 2 is mixed with Python 3:

@task()
def clean():
    '''Clean build directory.'''
    print 'Cleaning build directory...'

@task()
def _copy_resources():
    '''Copy resource files. This is a private task. "pynt -l" will not list this'''
    print('Copying resource files')

I mean the prints. Unify them for Python 3.

jabbalaci avatar Jan 25 '23 14:01 jabbalaci