fix: minor ruff updates (#1649)

Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>
This commit is contained in:
Henry Schreiner
2023-10-26 10:57:23 -04:00
committed by GitHub
parent c4fdf66efc
commit 1efccd03b5
5 changed files with 24 additions and 14 deletions
+7 -2
View File
@@ -7,7 +7,7 @@ import shutil
import sys
import textwrap
import time
from collections import namedtuple
import typing
from glob import glob
from pathlib import Path
from subprocess import run
@@ -34,7 +34,12 @@ def generate_basic_project(path):
project.generate(path)
CIService = namedtuple("CIService", "name dst_config_path badge_md")
class CIService(typing.NamedTuple):
name: str
dst_config_path: str
badge_md: str
services = [
CIService(
name="appveyor",