File: __init__.py

package info (click to toggle)
python-virtualenv 20.33.1%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 1,124 kB
  • sloc: python: 10,907; sh: 160; ansic: 61; csh: 47; makefile: 8
file content (9 lines) | stat: -rw-r--r-- 120 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
from __future__ import annotations


def run():
    print("magic")  # noqa: T201


if __name__ == "__main__":
    run()