--- a/src/eric7/DebugClients/Python/AsyncFile.py Mon Feb 24 15:11:18 2025 +0100 +++ b/src/eric7/DebugClients/Python/AsyncFile.py Mon Feb 24 15:43:49 2025 +0100 @@ -299,7 +299,7 @@ """ return False - def seek(self, offset, whence=0): # noqa: U100 + def seek(self, offset, whence=0): # noqa: U-100 """ Public method to move the filepointer. @@ -321,7 +321,7 @@ """ raise OSError((29, "[Errno 29] Illegal seek")) - def truncate(self, size=-1): # noqa: U100 + def truncate(self, size=-1): # noqa: U-100 """ Public method to truncate the file.