wenzhenhao

Results 2 issues of wenzhenhao

问题描述: "解决方案"中,`timezone`以`from pytz import timezone`的方式导入。 但在“讨论”中,未有导入`pytz`的语句,且访问了`pytz.utc`和`pytz.country_timezones`。我在运行时会出现NameError: `name 'pytz' is not defined`。 以下给出我的一点修改建议: `from pytz import timezone`改成`from pytz import timezone, utc, country_timezones` `pytz.utc`改成`utc` `pytz.country_timezones`改成`country_timezones` 谢谢

**Describe the bug** There is the source code that I found: ``` addItem(opts: BulletOption): number { if (opts.time == null) return -1; let index = 0; for (let i =...