Skip to content

Commit dc44a0f

Browse files
committed
fix: make imports explicit
1 parent 0eed4eb commit dc44a0f

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/DIRAC/Core/Tornado/Server/TornadoREST.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,15 @@
44
"""
55

66
import os
7+
import inspect
8+
from functools import partial
9+
from urllib.parse import unquote
10+
711
from tornado.escape import json_decode
812
from tornado.web import url as TornadoURL
913

1014
from DIRAC.ConfigurationSystem.Client import PathFinder
11-
from DIRAC.Core.Tornado.Server.private.BaseRequestHandler import *
15+
from DIRAC.Core.Tornado.Server.private.BaseRequestHandler import BaseRequestHandler, set_attribute
1216

1317
# decorator to determine the path to access the target method
1418
location = partial(set_attribute, "location")

0 commit comments

Comments
 (0)