acecalisto3 commited on
Commit
1c8ce1b
·
verified ·
1 Parent(s): 020c2fe

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -1587,9 +1587,9 @@ if __name__ == "__main__":
1587
  def load_templates(self):
1588
  """Load all templates from directory"""
1589
  try:
1590
- # Load built-in templates
1591
- self.templates.update(self._get_builtin_templates())
1592
- # Load custom templates
1593
  for template_file in self.template_dir.glob("*.json"):
1594
  try:
1595
  with open(template_file, 'r', encoding='utf-8') as f:
 
1587
  def load_templates(self):
1588
  """Load all templates from directory"""
1589
  try:
1590
+ # Load built-in templates
1591
+ self.templates.update(self._get_builtin_templates())
1592
+ # Load custom templates
1593
  for template_file in self.template_dir.glob("*.json"):
1594
  try:
1595
  with open(template_file, 'r', encoding='utf-8') as f: