Left over notes to save

This commit is contained in:
Norm Rasmussen
2023-03-06 09:33:03 -05:00
parent 34cdcf15cd
commit 3e9d970f11
5 changed files with 66 additions and 23 deletions

View File

@ -31,14 +31,14 @@ def findlatestExport(currentDash):
def copytoDash(latestdownload, currentDash):
readExport = pd.read_excel(
latestdownload,
latestdownload,
index_col=False,
header=0,
)
readExport.drop(
readExport.filter(
regex="Unname"
),axis=1,
),axis=1,
inplace=True)
def progressFormat(latestdownload, currentDash, readExport):