Skip to content

Commit c7aab2a

Browse files
EdwardJXLicodegen-bot
and
codegen-bot
authored
Fix Codebase __init__ typing for undefined programming_language (#184)
# Motivation <!-- Why is this change necessary? --> # Content <!-- Please include a summary of the change --> # Testing <!-- How was the change tested? --> # Please check the following before marking your PR as ready for review - [ ] I have added tests for my changes - [ ] I have updated the documentation or added new documentation as needed - [ ] I have read and agree to the [Contributor License Agreement](../CLA.md) Co-authored-by: codegen-bot <[email protected]>
1 parent d61f34e commit c7aab2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/codegen/sdk/core/codebase.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ def __init__(
129129
self,
130130
repo_path: str,
131131
*,
132-
programming_language: ProgrammingLanguage,
132+
programming_language: ProgrammingLanguage | None = None,
133133
projects: None = None,
134134
config: CodebaseConfig = DefaultConfig,
135135
) -> None: ...

0 commit comments

Comments
 (0)