Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Nov 17, 2023
1 parent f939874 commit f7cc7e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion socs/agents/hwp_pid/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ def acq(self, session, params):
data['data']['current_freq'] = current_freq
data['data']['target_freq'] = target_freq
data['data']['direction'] = direction
except:
except BaseException:
time.sleep(1)
continue

Expand Down
2 changes: 1 addition & 1 deletion socs/agents/hwp_pmx/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ def acq(self, session, params):

msg, src = self.dev.check_source()
data['data']['source'] = src
except:
except BaseException:
time.sleep(sleep_time)
continue

Expand Down

0 comments on commit f7cc7e4

Please sign in to comment.