Fix Ruff UP006 (deprecated annotation symbols)

This commit is contained in:
Andrej
2025-06-09 10:00:26 +05:00
parent 6eb45917fe
commit 7d4176d105
39 changed files with 231 additions and 241 deletions
+1 -2
View File
@@ -19,7 +19,6 @@
import itertools
import json
from pathlib import Path
from typing import Dict
import numpy as np
from jinja2 import Environment, FileSystemLoader
@@ -30,7 +29,7 @@ includeZeroLength1DSprings = False
class CommandFileConstructor:
def __init__(self, data: Dict):
def __init__(self, data: dict):
self.data = data
self.env = Environment(loader=FileSystemLoader(Path(__file__).parent / "templates"))