mirror of
https://github.com/gradio-app/gradio.git
synced 2025-04-06 12:30:29 +08:00
formatting
Former-commit-id: b78188d885230fd4ad617ee7288e840aa6dea321
This commit is contained in:
parent
a415e5abc8
commit
2a7757ee7e
@ -207,10 +207,12 @@ class CSVLogger(FlaggingCallback):
|
||||
writer.writerow(headers)
|
||||
writer.writerow(csv_data)
|
||||
with open(log_fp, "wb") as csvfile:
|
||||
csvfile.write(utils.santize_for_csv(
|
||||
encryptor.encrypt(
|
||||
interface.encryption_key, output.getvalue().encode()
|
||||
))
|
||||
csvfile.write(
|
||||
utils.santize_for_csv(
|
||||
encryptor.encrypt(
|
||||
interface.encryption_key, output.getvalue().encode()
|
||||
)
|
||||
)
|
||||
)
|
||||
else:
|
||||
if flag_index is None:
|
||||
|
@ -290,12 +290,13 @@ def get_default_args(func: Callable) -> Dict[str, Any]:
|
||||
|
||||
|
||||
def santize_for_csv(data: str | List[str] | List[List[str]]):
|
||||
""" Sanitizes data so that it can be safely written to a CSV file. """
|
||||
"""Sanitizes data so that it can be safely written to a CSV file."""
|
||||
|
||||
def sanitize(item):
|
||||
return "'" + item
|
||||
|
||||
|
||||
unsafe_prefixes = ("+", "=", "-", "@")
|
||||
|
||||
|
||||
if isinstance(data, str):
|
||||
if data.startswith(unsafe_prefixes):
|
||||
warnings.warn("Sanitizing flagged data by escaping cell contents")
|
||||
@ -318,4 +319,3 @@ def santize_for_csv(data: str | List[str] | List[List[str]]):
|
||||
return sanitized_data
|
||||
else:
|
||||
raise ValueError("Unsupported data type: " + str(type(data)))
|
||||
|
||||
|
@ -15,8 +15,8 @@ from gradio.utils import (
|
||||
json,
|
||||
launch_analytics,
|
||||
readme_to_html,
|
||||
version_check,
|
||||
santize_for_csv,
|
||||
version_check,
|
||||
)
|
||||
|
||||
os.environ["GRADIO_ANALYTICS_ENABLED"] = "False"
|
||||
@ -135,6 +135,5 @@ class TestSanitizeForCSV(unittest.TestCase):
|
||||
self.assertEquals(safe_data, [["abc", "'=abc"]])
|
||||
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
unittest.main()
|
||||
|
Loading…
x
Reference in New Issue
Block a user