Fix linting errors: add trailing newlines to all source files
Some checks failed
CI / test (push) Failing after 16s
CI / build (push) Has been skipped

This commit is contained in:
Developer
2026-03-22 19:57:29 +00:00
parent da98b8b402
commit 48d8e24d39
12 changed files with 12 additions and 12 deletions

View File

@@ -1,3 +1,3 @@
"""TestDataGen - CLI tool for generating realistic test data."""
__version__ = "0.1.0"
__version__ = "0.1.0"

View File

@@ -255,4 +255,4 @@ def from_sample(input, count, format, seed, table):
if __name__ == "__main__":
main()
main()

View File

@@ -1 +1 @@
"""Formatters package for TestDataGen."""
"""Formatters package for TestDataGen."""

View File

@@ -126,4 +126,4 @@ class CSVFormatter:
else:
result[new_key] = value if value is not None else ""
return result
return result

View File

@@ -54,4 +54,4 @@ class JSONFormatter:
return obj.__dict__
if hasattr(obj, 'isoformat'):
return obj.isoformat()
return str(obj)
return str(obj)

View File

@@ -115,4 +115,4 @@ class SQLFormatter:
"Maximum length is 64 characters."
)
return table_name
return table_name

View File

@@ -1 +1 @@
"""Generators package for TestDataGen."""
"""Generators package for TestDataGen."""

View File

@@ -425,4 +425,4 @@ class JSONSchemaGenerator:
return final_result if final_result else ''.join(
random.choices(string.ascii_letters, k=10)
)
)

View File

@@ -1 +1 @@
"""Providers package for TestDataGen."""
"""Providers package for TestDataGen."""

View File

@@ -333,4 +333,4 @@ class TestDataProvider(BaseProvider):
for prop_name, prop_schema in properties.items():
result[prop_name] = self.json_schema_type(prop_schema, faker_instance)
return result
return result

View File

@@ -1 +1 @@
"""Utils package for TestDataGen."""
"""Utils package for TestDataGen."""

View File

@@ -333,4 +333,4 @@ class TestDataProvider(BaseProvider):
for prop_name, prop_schema in properties.items():
result[prop_name] = self.json_schema_type(prop_schema, faker_instance)
return result
return result