File: formatted_normal.py

package info (click to toggle)
python-noseofyeti 2.4.9-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 360 kB
  • sloc: python: 2,581; sh: 31; makefile: 12
file content (13 lines) | stat: -rw-r--r-- 170 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
import typing as tp


def stuff():
    pass


def hello(one: int, two: str, *args: str) -> object: ...


class Hi(tp.Protocol):
    async def blah(self):
        stuff()