| Philipp Le | 84173f6 | 2022-04-19 22:27:12 +0200 | [diff] [blame] | 1 | # SPDX-License-Identifier: MPL-2.0 |
| 2 | # Copyright (c) 2022 Philipp Le <philipp@philipple.de>. |
| 3 | # This Source Code Form is subject to the terms of the Mozilla Public |
| 4 | # License, v. 2.0. If a copy of the MPL was not distributed with this |
| 5 | # file, You can obtain one at https://mozilla.org/MPL/2.0/. |
| 6 | |
| 7 | from .base import Group |
| 8 | |
| 9 | |
| 10 | class Ch02Group(Group): |
| 11 | NAME = 'Chapter 02' |
| Philipp Le | c2a590b | 2022-04-26 21:31:47 +0200 | [diff] [blame] | 12 | |
| 13 | |
| 14 | class Ch03Group(Group): |
| 15 | NAME = 'Chapter 03' |
| Philipp Le | 83e96b6 | 2022-05-01 17:36:30 +0200 | [diff] [blame] | 16 | |
| 17 | |
| 18 | class Ch04Group(Group): |
| 19 | NAME = 'Chapter 04' |
| Philipp Le | 8aaf423 | 2022-05-02 22:45:27 +0200 | [diff] [blame] | 20 | |
| 21 | |
| 22 | class Ch05Group(Group): |
| 23 | NAME = 'Chapter 05' |
| Philipp Le | 23c0ae4 | 2022-05-11 01:24:40 +0200 | [diff] [blame] | 24 | |
| 25 | |
| 26 | class Ch06Group(Group): |
| 27 | NAME = 'Chapter 06' |
| Philipp Le | d818bd5 | 2022-06-02 20:09:17 +0200 | [diff] [blame] | 28 | |
| 29 | |
| 30 | class Ch07Group(Group): |
| 31 | NAME = 'Chapter 07' |