File: dataclasses.py

package info (click to toggle)
python-pathable 0.4.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 188 kB
  • sloc: python: 968; makefile: 3
file content (10 lines) | stat: -rw-r--r-- 165 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
from dataclasses import dataclass
from typing import Hashable
from typing import List


@dataclass
class BasePathData:

    parts: List[Hashable]
    separator: str