Python如何阻止atom-beautify包的分行?

Python how to stop the atom-beautify package from line splitting?

我正在创建一个程序来从 google 日历 API 中获取我的工作时间表并计算我的工资。有这一行在我不想要的时候一直在分裂。

我稍微研究了一下并增加了首选行的长度,因为我在美化设置中读到一些关于它获得行长度配置的地方,但这没有用,文本仍然换行。

print("\n")
id_key = int(input("Please enter the number of the work calendar:"))
pay_date = int(
    input("Please enter the pay date you want to calculate:"))
print("\n")

v.s.

print("\n")
id_key = int(input("Please enter the number of the work calendar:"))
pay_date = int(input("Please enter the pay date you want to calculate:"))
print("\n")

包设置 -> Atom Beautify -> Python。将 "Max line length" 设置为您喜欢的任何值。