Skip to content

Commit

Permalink
adsf
Browse files Browse the repository at this point in the history
  • Loading branch information
Zanger67 committed Jul 26, 2024
1 parent eb85600 commit b51dcf0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions main.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@
" \n",
" oldest_date = datetime.now()\n",
"\n",
" if IS_NOTEBOOK :\n",
" if getenv(\"GITHUB_ACTIONS\") == 'true' :\n",
" print('\\n')\n",
" print('/' + '=' * 15 + '\\\\')\n",
" print(' ', end='')\n",
Expand All @@ -303,7 +303,6 @@
" pqBarsPrinted = curChunk\n",
" \n",
" print((15 - pqBarsPrinted) * '=', '\\n\\n')\n",
" \n",
" else :\n",
" with tqdm(total=len(paths)) as pbar :\n",
" # with tqdm(total=len(paths), position=0, leave=True) as pbar :\n",
Expand Down
3 changes: 1 addition & 2 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ def getAllCTimesViaGit(paths: List[str]) -> Dict[str, Tuple[datetime, datetime]]

oldest_date = datetime.now()

if IS_NOTEBOOK :
if getenv("GITHUB_ACTIONS") == 'true' :
print('\n')
print('/' + '=' * 15 + '\\')
print(' ', end='')
Expand All @@ -235,7 +235,6 @@ def getAllCTimesViaGit(paths: List[str]) -> Dict[str, Tuple[datetime, datetime]]
pqBarsPrinted = curChunk

print((15 - pqBarsPrinted) * '=', '\n\n')

else :
with tqdm(total=len(paths)) as pbar :
# with tqdm(total=len(paths), position=0, leave=True) as pbar :
Expand Down

0 comments on commit b51dcf0

Please sign in to comment.