We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a47acf4 commit df980aaCopy full SHA for df980aa
1 file changed
edtf/parser/grammar.py
@@ -322,7 +322,9 @@ def f(toks):
322
323
324
# (* *** L2 Season *** *)
325
-seasonL2Number = one_of("21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41")
+seasonL2Number = one_of(
326
+ "21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41"
327
+)
328
l2season = year + "-" + seasonL2Number("season")
329
Level2Season.set_parser(l2season)
330
0 commit comments