VijayantSoni commented on pull request #8701:
URL: https://github.com/apache/airflow/pull/8701#issuecomment-697837476
Hi @feluelle , can you please help with understanding the static checks ?
It first asked me to convert from this:
```python
response = self.hook.wait_for_availability(
replication_group_id=self.REPLICATION_GROUP_ID,
max_retries=1,
initial_sleep_time=1, # seconds
)
```
to this:
```python
response = self.hook.wait_for_availability(
replication_group_id=self.REPLICATION_GROUP_ID, max_retries=1,
initial_sleep_time=1, # seconds
)
```
and now it is asking to do the reverse (for such all cases in code). I am
confused 😕
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]