1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-10-02 09:10:11 +02:00

remove unused YamlLoader optimization

This commit is contained in:
Michael Pöhn 2018-08-29 11:25:01 +02:00
parent 6b3cf72b68
commit ee4945cb84

View File

@ -28,13 +28,6 @@ import textwrap
import io
import yaml
from collections import OrderedDict
# use libyaml if it is available
try:
from yaml import CLoader
YamlLoader = CLoader
except ImportError:
from yaml import Loader
YamlLoader = Loader
import fdroidserver.common
from fdroidserver import _