Skip to content

Commit f5a8022

Browse files
committed
remove upgrade UP031
1 parent aa5bd16 commit f5a8022

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

examples/wifi/expanded/requests_wifi_api_twitter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@
110110
print("Monotonic: ", time.monotonic())
111111

112112
print("\nFinished!")
113-
print("Next Update in %s %s" % (int(sleep_int), sleep_time_conversion))
113+
print("Next Update in {} {}".format(int(sleep_int), sleep_time_conversion))
114114
print("===============================")
115115
gc.collect()
116116

examples/wifi/expanded/requests_wifi_api_youtube.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@
113113
print("Monotonic: ", time.monotonic())
114114

115115
print("\nFinished!")
116-
print("Next Update in %s %s" % (int(sleep_int), sleep_time_conversion))
116+
print("Next Update in {} {}".format(int(sleep_int), sleep_time_conversion))
117117
print("===============================")
118118
gc.collect()
119119

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ target-version = "py38"
4343

4444
[tool.ruff.lint]
4545
select = ["I", "PL", "UP"]
46-
ignore = ["PLR2004", "UP030", "UP031", "UP032"]
46+
ignore = ["PLR2004", "UP030", "UP032"]
4747

4848
[tool.ruff.format]
4949
line-ending = "lf"

0 commit comments

Comments
 (0)