Skip to content

Commit

Permalink
format fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
rudolfix committed Jun 27, 2024
1 parent dac426f commit a87b6b8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion dlt/common/configuration/specs/run_configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ class RunConfiguration(BaseConfiguration):
dlthub_telemetry: bool = True # enable or disable dlthub telemetry
dlthub_telemetry_endpoint: Optional[str] = "https://telemetry.scalevector.ai"
dlthub_telemetry_segment_write_key: Optional[str] = None
log_format: str = "{asctime}|[{levelname}]|{process}|{thread}|{name}|{filename}|{funcName}:{lineno}|{message}"
log_format: str = (
"{asctime}|[{levelname}]|{process}|{thread}|{name}|{filename}|{funcName}:{lineno}|{message}"
)
log_level: str = "WARNING"
request_timeout: float = 60
"""Timeout for http requests"""
Expand Down
4 changes: 2 additions & 2 deletions docs/tools/prepare_examples_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@
# convert the main clause to a test function
if line.startswith(MAIN_CLAUSE):
main_clause_found = True
processed_lines.append("@skipifgithubfork") # skip on forks
processed_lines.append("@pytest.mark.forked") # skip on forks
processed_lines.append("@skipifgithubfork") # skip on forks
processed_lines.append("@pytest.mark.forked") # skip on forks
processed_lines.append(f"def test_{example}():")
else:
processed_lines.append(line)
Expand Down

0 comments on commit a87b6b8

Please sign in to comment.