File: __init__.py

package info (click to toggle)
python-semantic-version 2.10.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 348 kB
  • sloc: python: 2,586; makefile: 204
file content (10 lines) | stat: -rw-r--r-- 324 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
# -*- coding: utf-8 -*-
# Copyright (c) The python-semanticversion project
# This code is distributed under the two-clause BSD License.

try:  # pragma: no cover
    import django  # noqa
    from django.conf import settings  # noqa
    django_loaded = True
except ImportError:  # pragma: no cover
    django_loaded = False