File: __init__.py

package info (click to toggle)
rmlint 2.10.2-0.2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,180 kB
  • sloc: ansic: 15,671; python: 9,312; sh: 474; xml: 111; makefile: 72
file content (14 lines) | stat: -rw-r--r-- 251 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env python3
# encoding: utf-8
def teardown():
    from .utils import usual_teardown_func

    try:
        usual_teardown_func()
    except OSError:
        pass


def setup():
    from .utils import usual_setup_func
    usual_setup_func()