Преглед изворни кода

fix: use if instead of elif

tags/v0.5.0
mingrammer пре 4 година
родитељ
комит
2366fe7f11
1 измењених фајлова са 1 додато и 1 уклоњено
  1. +1
    -1
      scripts/generate.py

+ 1
- 1
scripts/generate.py Прегледај датотеку

@@ -19,7 +19,7 @@ def load_tmpl(tmpl: str) -> Template:
def up_or_title(pvd: str, s: str) -> str:
if s in cfg.UPPER_WORDS.get(pvd, ()):
return s.upper()
elif s in cfg.TITLE_WORDS.get(pvd, {}):
if s in cfg.TITLE_WORDS.get(pvd, {}):
return cfg.TITLE_WORDS[pvd][s]
return s.title()



Loading…
Откажи
Сачувај