Просмотр исходного кода

ref: remove cached-property, using django's implementation instead (#16812)

josh 5 лет назад
Родитель
Сommit
87805f305b
2 измененных файлов с 1 добавлено и 2 удалено
  1. 0 1
      requirements-base.txt
  2. 1 1
      src/sentry_plugins/client.py

+ 0 - 1
requirements-base.txt

@@ -83,5 +83,4 @@ urllib3==1.24.2
 uwsgi>2.0.0,<2.1.0
 
 # sentry-plugins specific dependencies
-cached-property
 phabricator>=0.6.0,<1.0

+ 1 - 1
src/sentry_plugins/client.py

@@ -6,7 +6,7 @@ import json
 import requests
 
 from bs4 import BeautifulSoup
-from cached_property import cached_property
+from django.utils.functional import cached_property
 from requests.exceptions import ConnectionError, HTTPError
 
 from sentry.http import build_session