ampy icon indicating copy to clipboard operation
ampy copied to clipboard

Fix location of progress_bar

Open lisaev1 opened this issue 3 years ago • 0 comments

I think in ampy/cli.py, progress_bar should be namespaced, i.e.

ampy/cli.py:
...
    31	from progress_bar import PorgressBar
    32	from progress_bar import PorgressBarBath
...

should be

ampy/cli.py:
...
    31	from ampy.progress_bar import PorgressBar
    32	from ampy.progress_bar import PorgressBarBath
...

similar to files and pyboard.

Thanks!

lisaev1 avatar Nov 12 '22 18:11 lisaev1