MCPcopy Create free account
hub / github.com/EasyIME/PIME / css_files

Method css_files

python/python3/tornado/web.py:3345–3352  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

3343 return "\n".join(self._get_resources("embedded_css"))
3344
3345 def css_files(self) -> Iterable[str]:
3346 result = []
3347 for f in self._get_resources("css_files"):
3348 if isinstance(f, (unicode_type, bytes)):
3349 result.append(f)
3350 else:
3351 result.extend(f)
3352 return result
3353
3354 def html_head(self) -> str:
3355 return "".join(self._get_resources("html_head"))

Callers

nothing calls this directly

Calls 2

_get_resourcesMethod · 0.95
appendMethod · 0.45

Tested by

no test coverage detected