Skip to content

Commit

Permalink
Fix type
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterDing committed Apr 8, 2024
1 parent b37e857 commit 593fcb7
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/datas.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import os
from dataclasses import dataclass
from typing import List

from alipcs_py.alipcs.inner import PcsFile

Expand All @@ -9,7 +10,7 @@
@dataclass
class Datas:
local_dir: str
local_paths: list[str]
local_paths: List[str]
remote_dir: str
remote_dir_pcs_file: PcsFile
remote_paths: list[str]
remote_paths: List[str]

0 comments on commit 593fcb7

Please sign in to comment.