File size: 454 Bytes
80a230c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
"""Backwards-compatible entry point for dynamic scenario generation.

This module now delegates to the first-class CLI implemented in
``LWMTemporal.cli.generate_dynamic_data``. Invoke ``python generate_data.py``
exactly as before; the new CLI exposes additional flags for customization.
"""

from __future__ import annotations

from LWMTemporal.cli.generate_dynamic_data import main


if __name__ == "__main__":
    main()