Update typing 16 (#48087)
This commit is contained in:
parent
0f5efca76b
commit
4cb7718192
59 changed files with 180 additions and 166 deletions
|
@ -1,7 +1,8 @@
|
|||
"""Models for scaffolding."""
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
from pathlib import Path
|
||||
from typing import Set
|
||||
|
||||
import attr
|
||||
|
||||
|
@ -21,9 +22,9 @@ class Info:
|
|||
discoverable: str = attr.ib(default=None)
|
||||
oauth2: str = attr.ib(default=None)
|
||||
|
||||
files_added: Set[Path] = attr.ib(factory=set)
|
||||
tests_added: Set[Path] = attr.ib(factory=set)
|
||||
examples_added: Set[Path] = attr.ib(factory=set)
|
||||
files_added: set[Path] = attr.ib(factory=set)
|
||||
tests_added: set[Path] = attr.ib(factory=set)
|
||||
examples_added: set[Path] = attr.ib(factory=set)
|
||||
|
||||
@property
|
||||
def integration_dir(self) -> Path:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue