Skip to content

Commit 9415a7f

Browse files
authored
chore(deps): update packages/subiquity_client/subiquity digest to 6348d31 (#1344)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [packages/subiquity_client/subiquity](https://redirect.github.com/canonical/subiquity.git) ([changelog](https://redirect.github.com/canonical/subiquity.git/compare/615bbf9c75b18d7acfdb3fe3cd084af899c62aa3..6348d31be291bb353c9783b2f315ff56b4fadce3)) | digest | `615bbf9` → `6348d31` | --- > [!WARNING] > Some dependencies could not be looked up. Check the [Dependency Dashboard](../issues/4) for more information. --- ### Configuration 📅 **Schedule**: Branch creation - "after 9am and before 2pm on monday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/canonical/ubuntu-desktop-provision). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My41OS4wIiwidXBkYXRlZEluVmVyIjoiNDMuNTkuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->
2 parents d6f3f34 + addfae1 commit 9415a7f

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

packages/subiquity_client/generator/generator.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,10 @@ def __init__(self):
7474
def visit_Assign(self, node: ast.Assign):
7575
self.values.extend(node.targets)
7676

77+
# skip function definitions within the class
78+
def visit_FunctionDef(self, node: ast.FunctionDef):
79+
pass
80+
7781
def visit_ClassDef(self, node: ast.ClassDef):
7882
if any(base.value.id == "enum" for base in node.bases):
7983
scanner = self.EnumScanner()

0 commit comments

Comments
 (0)