Skip to content

Commit

Permalink
Updated db
Browse files Browse the repository at this point in the history
  • Loading branch information
rh3xp committed Feb 16, 2021
1 parent 45facea commit 002a428
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions data.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"Project Manager": "I will be creating a simple project manager in python.\nI will make it into a pip package.\nThere will be a lot of new ideas which I will implement in it.\n"}
4 changes: 2 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ def display():
sleep(1)

# Print the names of the columns.
print ("{:<10} {:<10}".format('NAME', 'DESCRIPTION'))
print ("{:<10} {:<7}".format('NAME', 'DESCRIPTION'))

# print each data item.
for key, value in dataDict.items():
name, desc = key, value
desc = desc.replace("\n", "\n\t ")
print ("{:<10} {:<7}".format(name, desc))
print ("{:<10} {:<10}".format(name, desc))


else:
Expand Down

0 comments on commit 002a428

Please sign in to comment.