Skip to content

Commit

Permalink
fix: github action bool secrect settings not worked (bool('0') always…
Browse files Browse the repository at this point in the history
… get true)
  • Loading branch information
Freddd13 committed Oct 13, 2024
1 parent 39386a0 commit 9ea2f9a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion _outlook_refresh_token
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
M.C546_BAY.0.U.-CoXxfQg!5LI*EacC*mloQZf4kLALYOitQSuDO6YObq1ooFTSoVRaiD88LJE87Zm1vlcdNbC8wxVuV05hB0aHYJKME0qFVdWSJijGEHgh0gALWEXkOhKVw4siWWU!9CMKOwkICjJ1uBUFMkCI3zAUShlTizguxrH13WaMmTzOgknKA4Q3AOfUJ8lVjWByXNHWInN6wFBdRlcPxyTU*!zDYpL5B8VcuA86Uv1KZMkFN3DUU2NAXVqFtBvcgy1xiQ5B9Absfq16o9gmXcWke077Puiik8YOw8ULxGZcBmgXaAf6YBXz5zgIvVGyiEfBinZJnJSMM9pkudxA3rk1fEgENUX6pL4LtV*cSKn4hoZjRCcrv!xlr2VbPJX4m9IKHtH0EKfYd0fdM3blPQD0CaY5DXI$
M.C546_SN1.0.U.-CjESrlvy!9IHg1rEdZD8CZoRdqLxEffH06GkZ6o8yN!BZsFZnqllhZxGqMNKUvH*AQ2mN*QHvv3Og!M40DxbEYBnpLAQh2it2RNq9A9l47Y*yyvnMhIDyW9NNNsCFTwZWPi20xmUka1D14WettMI8TR0QdvHn!pRujjnl7xCifjmwoaNUwY09hTxb42PZGrpJIjp1xkl6H*5UGHzELSZgUDpURKvT1*XNPw2nuQQ*u*GOS6Ongvb9kN3NCrqNxuQ*cn!x3UIPn2LUqntDe1CmLqaWIYFHLGaAYUdvutwWL8C6dXwTOJBvO5Ieqc39!EwSwaC9eOvsDPsLGABKhOAV28oDnCC9qBX7wuqIqDoNjCAPyg!Y!WtsR0PWEyvph6x2HxsiWRGzFVe1AuA6toQJ*Q$

6 changes: 3 additions & 3 deletions auto_score/directly_request/mms.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,9 +191,9 @@ def get_recent_sheets(
items = []
for item in sheet_search:
price = float(item.get("price", -1))
print("=========================================")
print("price:", price)
print("item:", item)
# print("=========================================")
# print("price:", price)
# print("item:", item)
if abs(price) < 1e-6: # free sheet
# if 1: # debug: all sheets
title = f"{item['author']['name']} | {item['title']}"
Expand Down

0 comments on commit 9ea2f9a

Please sign in to comment.