Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions codegen-examples/examples/github_checks/README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Github Checks

This application is a GitHub integration that analyzes import cycles in Python codebases. It automatically runs when a pull request is labeled and checks for potentially problematic import patterns in the modified codebase.
This application is a GitHub integration that analyzes import cycles in codebases. It automatically runs when a pull request is labeled and checks for potentially problematic import patterns in the modified codebase.

## Features

- Analyzes import relationships in Python codebases
- Analyzes import relationships in codebases
- Detects circular import dependencies
- Identifies problematic cycles with mixed static and dynamic imports
- Automatically comments on pull requests with detailed analysis
Expand Down
1 change: 0 additions & 1 deletion codegen-examples/examples/github_checks/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,6 @@ def handle_pr(event: PullRequestLabeledEvent):
cycles = find_import_cycles(G)
problematic_loops = find_problematic_import_loops(G, cycles)

# Build comment message
message = ["### Import Cycle Analysis - GitHub Check\n"]

if problematic_loops:
Expand Down
Loading