Skip to content

Commit b5cb1fb

Browse files
Enable ruff DTZ005 rule (TheAlgorithms#11327)
* Enable ruff DTZ005 rule * Fix other/gauss_easter.py * Fix * Fix web_programming/instagram_pic.py * Fix web_programming/instagram_video.py * Apply suggestions from code review * Update instagram_pic.py * datetime.now(tz=UTC).astimezone() * .astimezone() * Fix --------- Co-authored-by: Christian Clauss <[email protected]>
1 parent ead5431 commit b5cb1fb

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

other/gauss_easter.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,6 @@ def gauss_easter(year: int) -> datetime:
5555

5656

5757
if __name__ == "__main__":
58-
for year in (1994, 2000, 2010, 2021, 2023):
59-
tense = "will be" if year > datetime.now().year else "was"
58+
for year in (1994, 2000, 2010, 2021, 2023, 2032, 2100):
59+
tense = "will be" if year > datetime.now(tz=UTC).year else "was"
6060
print(f"Easter in {year} {tense} {gauss_easter(year)}")

pyproject.toml

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
lint.ignore = [ # `ruff rule S101` for a description of that rule
33
"B904", # Within an `except` clause, raise exceptions with `raise ... from err` -- FIX ME
44
"B905", # `zip()` without an explicit `strict=` parameter -- FIX ME
5-
"DTZ005", # The use of `datetime.datetime.now()` without `tzinfo` argument is not allowed -- FIX ME
65
"E741", # Ambiguous variable name 'l' -- FIX ME
76
"EM101", # Exception must not use a string literal, assign to variable first
87
"EXE001", # Shebang is present but file is not executable" -- FIX ME

web_programming/instagram_pic.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from datetime import datetime
1+
from datetime import UTC, datetime
22

33
import requests
44
from bs4 import BeautifulSoup
@@ -36,7 +36,7 @@ def download_image(url: str) -> str:
3636
if not image_data:
3737
return f"Failed to download the image from {image_url}."
3838

39-
file_name = f"{datetime.now():%Y-%m-%d_%H:%M:%S}.jpg"
39+
file_name = f"{datetime.now(tz=UTC).astimezone():%Y-%m-%d_%H:%M:%S}.jpg"
4040
with open(file_name, "wb") as out_file:
4141
out_file.write(image_data)
4242
return f"Image downloaded and saved in the file {file_name}"

web_programming/instagram_video.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from datetime import datetime
1+
from datetime import UTC, datetime
22

33
import requests
44

@@ -11,7 +11,7 @@ def download_video(url: str) -> bytes:
1111

1212
if __name__ == "__main__":
1313
url = input("Enter Video/IGTV url: ").strip()
14-
file_name = f"{datetime.now():%Y-%m-%d_%H:%M:%S}.mp4"
14+
file_name = f"{datetime.now(tz=UTC).astimezone():%Y-%m-%d_%H:%M:%S}.mp4"
1515
with open(file_name, "wb") as fp:
1616
fp.write(download_video(url))
1717
print(f"Done. Video saved to disk as {file_name}.")

0 commit comments

Comments
 (0)