Blame view

custom.py.example 367 Bytes
a3046d70   Geoffrey PREUD'HOMME   Support des règle...
1
2
3
4
5
6
7
8
9
10
11
12
  #!/usr/bin/env python3
  
  def filterEvent(event):
      print(event)
      # Enlève le Renforcement TOEIC
      if event.shortName == 'Renf.TOEIC':
          event.active = False
      # Remplace LV2 par allemand
      elif event.shortName == 'LV2':
          event.shortName = 'All'
          print(event.longName)
          event.longName = event.longName.replace('LV2', 'Allemand')