Skip to content

Commit 98020bb

Browse files
committed
v0.1.1 Hotfix Update
--- - Removed unnessecary command to set cwd to module directory. Signed-off-by: schlopp96 <[email protected]>
1 parent 28fea74 commit 98020bb

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

PyLoadBar/main.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
#!/usr/bin/env python3
22

33
import sys
4-
from os import chdir
54
from os.path import dirname
65
from random import uniform
76
from time import sleep
@@ -11,9 +10,7 @@
1110
sys.path.insert(0, dirname(
1211
dirname(__file__))) # Ensure module can be found by Python.
1312

14-
chdir(dirname(__file__)) # Change working directory to main module.
15-
16-
__version__ = '0.1.0'
13+
__version__ = '0.1.1'
1714

1815

1916
class PyLoadBar:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
setup(
99
name='PyLoadBar',
10-
version="0.1.0",
10+
version="0.1.1",
1111
description=
1212
'Customizeable loading sequence/progress bar generator, enabling users to customize start/finish messages, toggle sequence type, and set total iterations among other features.',
1313
url='https://github.com/schlopp96/PyLoadBar',

0 commit comments

Comments
 (0)