File: __init__.py

package info (click to toggle)
python-overrides 7.7.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 244 kB
  • sloc: python: 1,661; sh: 5; makefile: 2
file content (17 lines) | stat: -rw-r--r-- 333 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from overrides.enforce import EnforceOverrides
import sys

if sys.version_info < (3, 11):
    from overrides.final import final
else:
    from typing import final
from overrides.overrides import __VERSION__, overrides, override


__all__ = [
    "__VERSION__",
    "override",
    "overrides",
    "final",
    "EnforceOverrides",
]