File: mypy.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 (12 lines) | stat: -rw-r--r-- 199 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
from mypy.plugin import Plugin

from noseOfYeti.tokeniser.spec_codec import register


class NoyPlugin(Plugin):
    pass


def plugin(version: str):
    register(transform=True)
    return NoyPlugin