Skip to content

Commit

Permalink
task callsites: part 2 (#4188)
Browse files Browse the repository at this point in the history
* add struct logging to docs serve

* remove merge fluff

* struct logging to seed command

* converting print to use structured logging

* more structured logging print conversion

* pulling apart formatting more

* added struct logging by disecting printer.py

* add struct logging to runnable

* add struct logging to task init

* fixed formatting

* more formatting and moving things around

automatic commit by git-black, original commits:
  3cafc9e
  9cc7a7a
  • Loading branch information
emmyoop authored and iknox-fa committed Feb 8, 2022
1 parent 3a8d0db commit 8a39fa6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions core/dbt/task/serve.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@ def run(self):

# mypy doesn't think SimpleHTTPRequestHandler is ok here, but it is
httpd = TCPServer( # type: ignore
(address, port),
SimpleHTTPRequestHandler # type: ignore
(address, port), SimpleHTTPRequestHandler # type: ignore
) # type: ignore

if self.args.open_browser:
Expand Down

0 comments on commit 8a39fa6

Please sign in to comment.