mirror of
https://github.com/Chia-Network/chia-blockchain.git
synced 2026-09-03 10:05:00 -05:00
* configure isort to add the future annotations import * apply the new isort setting * remove type ignores for new mypy (#13539) https://pypi.org/project/mypy/0.981/ * another
14 lines
316 B
Python
14 lines
316 B
Python
from __future__ import annotations
|
|
|
|
from pathlib import Path
|
|
from typing import List
|
|
|
|
from chia.simulator.block_tools import get_plot_dir
|
|
|
|
|
|
def get_test_plots(sub_dir: str = "") -> List[Path]:
|
|
path = get_plot_dir()
|
|
if sub_dir != "":
|
|
path = path / sub_dir
|
|
return list(sorted(path.glob("*.plot")))
|