Skip to content

Instantly share code, notes, and snippets.

@26tajeen
26tajeen / sorter.py
Last active November 24, 2024 21:48
Python script to sort, validate and categorise your Home Assistant automations.yaml file
import yaml
import re
from collections import defaultdict
from datetime import datetime
class IndentedDumper(yaml.Dumper):
def increase_indent(self, flow=False, indentless=False):
return super(IndentedDumper, self).increase_indent(flow, False)
class CustomDumper(yaml.Dumper):