mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00

This removes use of gnutls and the TLS implementation, which is no longer needed (task synchronization is handled via Taskchampion, which uses `reqwest`, which handles TLS via other Rust dependencies). This incidentally removes the following config options: * `debug.tls` * `taskd.ca` * `taskd.certificate` * `taskd.ciphers` * `taskd.credentials` * `taskd.key` * `taskd.server` * `taskd.trust`
7 lines
117 B
Python
7 lines
117 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from .task import Task
|
|
from .testing import TestCase
|
|
|
|
# flake8:noqa
|
|
# vim: ai sts=4 et sw=4
|