diff options
author | emkael <emkael@tlen.pl> | 2016-11-25 18:00:29 +0100 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2016-11-25 18:00:29 +0100 |
commit | 62dca92a29e746d7dabf04ad7bea6931fa0e7ad7 (patch) | |
tree | 72aafb43a0885ba4ac7fd43873e7d045ef2a0edd /ql | |
parent | 9dfdf363fabc519ffcfddd7cca080d9a20bfea2d (diff) |
Replacing cached_property module from Django to a standalone one
Diffstat (limited to 'ql')
-rw-r--r-- | ql/lineup.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ql/lineup.py b/ql/lineup.py index b0d5847..5a2ce82 100644 --- a/ql/lineup.py +++ b/ql/lineup.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*-
-from django.utils.functional import cached_property
+from cached_property import cached_property
from .orm.models import Segment, Team, Player
|