Skip to content

Commit

Permalink
more gitignore stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
jckli committed Aug 8, 2021
1 parent f56ce19 commit 5e908ee
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

__pycache__
/build
/dist
SpotiStats.spec

__pycache__
11 changes: 9 additions & 2 deletions SpotiStats.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
import tkinter
from tkinter import filedialog
from time import sleep
from os import system, name

# currentTime = datetime.datetime.utcnow()

Expand Down Expand Up @@ -54,5 +55,11 @@

timeListened2021 = convertMillitoMin(msPlay2021)

os.system("cls")
print(f"Your minutes listened in 2021 is {timeListened2021:,.2f} minutes. That's a lot OwO")
def clear():
if name == 'nt':
_ = system('cls')
else:
_ = system('clear')
clear()
print(f"Your minutes listened in 2021 is {timeListened2021:,.2f} minutes. That's a lot OwO")
input("Press enter to close program")

0 comments on commit 5e908ee

Please sign in to comment.