File tree Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -673,8 +673,8 @@ def get_tags(self) -> List:
673
673
# todo: Currently all the tags are default type, we could open it up if we want to include badge
674
674
query = textwrap .dedent ("""
675
675
MATCH (t:Tag{tag_type: 'default'})
676
- OPTIONAL MATCH (tbl:Table )-[:TAGGED_BY]->(t)
677
- RETURN t as tag_name, count(distinct tbl .key) as tag_count
676
+ OPTIONAL MATCH (resource )-[:TAGGED_BY]->(t)
677
+ RETURN t as tag_name, count(distinct resource .key) as tag_count
678
678
""" )
679
679
680
680
records = self ._execute_cypher_query (statement = query ,
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ mock==2.0.0
28
28
# Mypy is an optional static type checker for Python.
29
29
# License: MIT
30
30
# Upstream url: https://github.com/python/mypy
31
- mypy == 0.660
31
+ mypy == 0.782
32
32
33
33
# Thin-wrapper around the mock package for easier use with py.test.
34
34
# License: MIT
@@ -60,7 +60,7 @@ marshmallow-annotations==2.4.0
60
60
MarkupSafe == 1.1
61
61
pytz == 2018.4
62
62
six == 1.11.0
63
- Werkzeug == 0.15.3
63
+ Werkzeug == 0.15.5
64
64
wheel == 0.33.1
65
65
neo4j == 1.7.6
66
66
neotime == 1.7.1
@@ -72,3 +72,4 @@ beaker>=1.10.0
72
72
mocket == 3.7.3
73
73
overrides == 2.5
74
74
websocket-client == 0.56.0
75
+ typed-ast == 1.4.1
Original file line number Diff line number Diff line change 5
5
6
6
from setuptools import setup , find_packages
7
7
8
- __version__ = '2.5.4 '
8
+ __version__ = '2.5.5 '
9
9
10
10
11
11
requirements_path = os .path .join (os .path .dirname (os .path .realpath (__file__ )), 'requirements.txt' )
You can’t perform that action at this time.
0 commit comments