7 lines
120 B
Python
7 lines
120 B
Python
"""Run the sampling profiler from the command line."""
|
|
|
|
from .sample import main
|
|
|
|
if __name__ == '__main__':
|
|
main()
|