File tree Expand file tree Collapse file tree 4 files changed +7
-4
lines changed
Expand file tree Collapse file tree 4 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -619,8 +619,8 @@ def __init__(
619619 self , default : TimestamptzArg = TimestamptzNow (), ** kwargs
620620 ) -> None :
621621 self ._validate_default (
622- default , TimestamptzArg .__args__
623- ) # type: ignore
622+ default , TimestamptzArg .__args__ # type: ignore
623+ )
624624
625625 if isinstance (default , datetime ):
626626 default = TimestamptzCustom .from_datetime (default )
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ def __init__(
1818 self ,
1919 table : t .Type [Table ],
2020 querystring : QueryString = QueryString ("" ),
21- ** kwargs
21+ ** kwargs ,
2222 ):
2323 super ().__init__ (table , ** kwargs )
2424 self .querystring = querystring
Original file line number Diff line number Diff line change 1+ [tool .black ]
2+ line-length = 79
3+ target-version = [' py37' , ' py38' , ' py39' ]
Original file line number Diff line number Diff line change 11#! /bin/bash
22
33isort piccolo tests
4- black piccolo tests --line-length 79
4+ black piccolo tests
55flake8 piccolo tests
66mypy piccolo tests
You can’t perform that action at this time.
0 commit comments