Skip to content

Commit cf53fac

Browse files
committed
Fix onboarding experience
1 parent 9ada872 commit cf53fac

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name='tasks',
5-
version='2.5.0',
5+
version='2.5.1',
66
author='Paul Baecher',
77
description='A simple personal task queue to track todo items',
88
long_description=open('README.md').read(),

tasks/main.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def _state():
5151

5252
def _load():
5353
if not os.path.exists(_STORE):
54-
raise StopIteration
54+
return
5555

5656
with open(_STORE) as f:
5757
for line in f:

0 commit comments

Comments
 (0)