On 11/25/2022 12:00 PM, Robin Becker wrote:
On 24/11/2022 14:10, Thomas Passin wrote:
.
C:\temp\python>py -V
Python 3.10.4
C:\temp\python>py tdc.py
DC(a=, b='B')
C:\temp\python>mypy tdc.py
tdc.py:10: error: Argument 1 to "DC" has incompatible type
"Type[DC]"; expected "str" [arg
On 24/11/2022 13:50, Kirill Ratkin via Python-list wrote:
mypy --strict gives you detail info.
Thanks Kirill,
it seems --strict does find the errors. One of those is that on line 9 I have
to add a return type ie
def main() -> None:
.
if that is added then mypy without --strict also f
On 24/11/2022 14:10, Thomas Passin wrote:
.
C:\temp\python>py -V
Python 3.10.4
C:\temp\python>py tdc.py
DC(a=, b='B')
C:\temp\python>mypy tdc.py
tdc.py:10: error: Argument 1 to "DC" has incompatible type "Type[DC]"; expected
"str" [arg-type]
Found 1 error in 1 file (checked 1 sou
Thomas Passin writes:
> On 11/24/2022 9:06 AM, Loris Bennett wrote:
>> Thomas Passin writes:
>>
>>> On 11/23/2022 11:00 AM, Loris Bennett wrote:
Hi,
I am using pandas to parse a file with the following structure:
Name filesettype KB quota limit
>>>
On Sun, Nov 13, 2022 at 4:45 PM DFS wrote:
> In code, list.clear is just ignored.
> At the terminal, list.clear shows
>
>
>
> in code:
> x = [1,2,3]
> x.clear
> print(len(x))
> 3
>
> at terminal:
> x = [1,2,3]
> x.clear
>
> print(len(x))
> 3
>
>
> Caused me an hour of frustration before I notic