We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0eed4eb commit dc44a0fCopy full SHA for dc44a0f
src/DIRAC/Core/Tornado/Server/TornadoREST.py
@@ -4,11 +4,15 @@
4
"""
5
6
import os
7
+import inspect
8
+from functools import partial
9
+from urllib.parse import unquote
10
+
11
from tornado.escape import json_decode
12
from tornado.web import url as TornadoURL
13
14
from DIRAC.ConfigurationSystem.Client import PathFinder
-from DIRAC.Core.Tornado.Server.private.BaseRequestHandler import *
15
+from DIRAC.Core.Tornado.Server.private.BaseRequestHandler import BaseRequestHandler, set_attribute
16
17
# decorator to determine the path to access the target method
18
location = partial(set_attribute, "location")
0 commit comments