René's URL Explorer Experiment


Title: refactor: hoist shared if-else logic; document principle in skill by Copilot · Pull Request #1890 · usethis-python/usethis-python · GitHub

Open Graph Title: refactor: hoist shared if-else logic; document principle in skill by Copilot · Pull Request #1890 · usethis-python/usethis-python

X Title: refactor: hoist shared if-else logic; document principle in skill by Copilot · Pull Request #1890 · usethis-python/usethis-python

Description: When an if-elif chain branches on a backend enum, identical statements appearing in multiple sibling branches signal a structural problem — the shared logic should be hoisted to an outer combined membership check. Code fix (src/usethis/_deps.py) remove_deps_from_group() had the same tick_print call duplicated verbatim in both the uv and poetry branches: # Before: identical tick_print in two sibling branches if backend is BackendEnum.uv: tick_print(f"Removing dependenc{ies} {deps_str} from the '{group}' group in 'pyproject.toml'.") for dep in _deps: remove_dep_from_group_via_uv(dep, group) elif backend is BackendEnum.poetry: tick_print(f"Removing dependenc{ies} {deps_str} from the '{group}' group in 'pyproject.toml'.") for dep in _deps: remove_dep_from_group_via_poetry(dep, group) # After: shared message hoisted; distinguishing logic nested inside if backend in (BackendEnum.uv, BackendEnum.poetry): tick_print(f"Removing dependenc{ies} {deps_str} from the '{group}' group in 'pyproject.toml'.") if backend is BackendEnum.uv: for dep in _deps: remove_dep_from_group_via_uv(dep, group) elif backend is BackendEnum.poetry: for dep in _deps: remove_dep_from_group_via_poetry(dep, group) else: assert_never(backend) Skill update (.agents/skills/usethis-python-code/SKILL.md, v1.9 → v1.10) Added section "Structuring if-else to avoid duplicated logic" — the generalised principle, a procedure, a before/after example, and common mistakes (including the nested-guard variant where the same guard condition is independently checked inside each backend branch).

Open Graph Description: When an if-elif chain branches on a backend enum, identical statements appearing in multiple sibling branches signal a structural problem — the shared logic should be hoisted to an outer combined m...

X Description: When an if-elif chain branches on a backend enum, identical statements appearing in multiple sibling branches signal a structural problem — the shared logic should be hoisted to an outer combined m...

Opengraph URL: https://github.com/usethis-python/usethis-python/pull/1890

X: @github

direct link

Domain: github.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:09ce09ff-75ad-116a-2414-6ce61f9998dd
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-idBC6C:B97C3:27C7E76:36976AE:6A4EF376
html-safe-nonce64a3e53ab351848fc4cf4c7fd8ad98c6a3d2d890d5935adaa21a9322b6e0f8ec
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJCQzZDOkI5N0MzOjI3QzdFNzY6MzY5NzZBRTo2QTRFRjM3NiIsInZpc2l0b3JfaWQiOiIyMjYyODU4MDA3NjM2Mjc2MDg2IiwicmVnaW9uX2VkZ2UiOiJpYWQiLCJyZWdpb25fcmVuZGVyIjoiaWFkIn0=
visitor-hmac14ee4f97a3755a2ffcaf9753fdf455d9b0db60cf1d9d16749ef15ecccefd611a
hovercard-subject-tagpull_request:3500683177
github-keyboard-shortcutsrepository,pull-request-list,pull-request-conversation,pull-request-files-changed,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///pull_requests/show/files
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/usethis-python/usethis-python/pull/1890/files
twitter:imagehttps://avatars.githubusercontent.com/in/1143301?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/in/1143301?s=400&v=4
og:image:altWhen an if-elif chain branches on a backend enum, identical statements appearing in multiple sibling branches signal a structural problem — the shared logic should be hoisted to an outer combined m...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
Noneb92d11c0aa4a77d54ef4af1078b6a15fb5a70a215b30c4ecf28889d5a8e656d9
turbo-cache-controlno-preview
diff-viewunified
go-importgithub.com/usethis-python/usethis-python git https://github.com/usethis-python/usethis-python.git
octolytics-dimension-user_id216362695
octolytics-dimension-user_loginusethis-python
octolytics-dimension-repository_id842189705
octolytics-dimension-repository_nwousethis-python/usethis-python
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id842189705
octolytics-dimension-repository_network_root_nwousethis-python/usethis-python
turbo-body-classeslogged-out env-production page-responsive full-width
disable-turbotrue
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release2b8f23afb982271f1b22258a94aede67a6b77760
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/usethis-python/usethis-python/pull/1890/files#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fusethis-python%2Fusethis-python%2Fpull%2F1890%2Ffiles
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/open-source/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/open-source/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/enterprise/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fusethis-python%2Fusethis-python%2Fpull%2F1890%2Ffiles
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fpull_requests%2Fshow%2Ffiles&source=header-repo&source_repo=usethis-python%2Fusethis-python
Reloadhttps://github.com/usethis-python/usethis-python/pull/1890/files
Reloadhttps://github.com/usethis-python/usethis-python/pull/1890/files
Reloadhttps://github.com/usethis-python/usethis-python/pull/1890/files
Please reload this pagehttps://github.com/usethis-python/usethis-python/pull/1890/files
usethis-python https://github.com/usethis-python
usethis-pythonhttps://github.com/usethis-python/usethis-python
Notifications https://github.com/login?return_to=%2Fusethis-python%2Fusethis-python
Fork 5 https://github.com/login?return_to=%2Fusethis-python%2Fusethis-python
Star 19 https://github.com/login?return_to=%2Fusethis-python%2Fusethis-python
Code https://github.com/usethis-python/usethis-python
Issues 163 https://github.com/usethis-python/usethis-python/issues
Pull requests 4 https://github.com/usethis-python/usethis-python/pulls
Actions https://github.com/usethis-python/usethis-python/actions
Security and quality 0 https://github.com/usethis-python/usethis-python/security
Insights https://github.com/usethis-python/usethis-python/pulse
Code https://github.com/usethis-python/usethis-python
Issues https://github.com/usethis-python/usethis-python/issues
Pull requests https://github.com/usethis-python/usethis-python/pulls
Actions https://github.com/usethis-python/usethis-python/actions
Security and quality https://github.com/usethis-python/usethis-python/security
Insights https://github.com/usethis-python/usethis-python/pulse
Sign up for GitHub https://github.com/signup?return_to=%2Fusethis-python%2Fusethis-python%2Fissues%2Fnew%2Fchoose
terms of servicehttps://docs.github.com/terms
privacy statementhttps://docs.github.com/privacy
Sign inhttps://github.com/login?return_to=%2Fusethis-python%2Fusethis-python%2Fissues%2Fnew%2Fchoose
nathanjmcdougallhttps://github.com/nathanjmcdougall
mainhttps://github.com/usethis-python/usethis-python/tree/main
copilot/refactor-uninstall-pre-commit-hooks-logichttps://github.com/usethis-python/usethis-python/tree/copilot/refactor-uninstall-pre-commit-hooks-logic
Conversation 2 https://github.com/usethis-python/usethis-python/pull/1890
Commits 4 https://github.com/usethis-python/usethis-python/pull/1890/commits
Checks 20 https://github.com/usethis-python/usethis-python/pull/1890/checks
Files changed https://github.com/usethis-python/usethis-python/pull/1890/files
Please reload this pagehttps://github.com/usethis-python/usethis-python/pull/1890/files
refactor: hoist shared if-else logic; document principle in skill https://github.com/usethis-python/usethis-python/pull/1890/files#top
Show all changes 4 commits https://github.com/usethis-python/usethis-python/pull/1890/files
84a29d0 Initial plan Copilot Apr 8, 2026 https://github.com/usethis-python/usethis-python/pull/1890/commits/84a29d0b5cdf881ad4e99571336e0e1e17745de6
d24b8e6 refactor: hoist shared tick_print in remove_deps_from_group; add if-e… Copilot Apr 8, 2026 https://github.com/usethis-python/usethis-python/pull/1890/commits/d24b8e63bf2c572c54b7a0244eebdb26614e4e5e
5bf5a18 Merge branch 'main' into copilot/refactor-uninstall-pre-commit-hooks-… nathanjmcdougall Apr 8, 2026 https://github.com/usethis-python/usethis-python/pull/1890/commits/5bf5a180646e78825c553395c56faec5a87ef02c
d5958d5 Fix newline issue nathanjmcdougall Apr 8, 2026 https://github.com/usethis-python/usethis-python/pull/1890/commits/d5958d5bd98be303415af14d14c3bb000630208b
Clear filters https://github.com/usethis-python/usethis-python/pull/1890/files
Please reload this pagehttps://github.com/usethis-python/usethis-python/pull/1890/files
Please reload this pagehttps://github.com/usethis-python/usethis-python/pull/1890/files
SKILL.md https://github.com/usethis-python/usethis-python/pull/1890/files#diff-afc0adb361a850741696f1f06ca5585b135b66ff16583f6a71e46b9ba16fad39
.pre-commit-config.yaml https://github.com/usethis-python/usethis-python/pull/1890/files#diff-63a9c44a44acf85fea213a857769990937107cf072831e1a26808cfde9d096b9
_deps.py https://github.com/usethis-python/usethis-python/pull/1890/files#diff-f44a9615238e511d64e29d229199ac3aa1a300b699edf3f38e7325510abb7320
.agents/skills/usethis-python-code/SKILL.mdhttps://github.com/usethis-python/usethis-python/pull/1890/files#diff-afc0adb361a850741696f1f06ca5585b135b66ff16583f6a71e46b9ba16fad39
View file https://github.com/usethis-python/usethis-python/blob/d5958d5bd98be303415af14d14c3bb000630208b/.agents/skills/usethis-python-code/SKILL.md
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/usethis-python/usethis-python/pull/1890/{{ revealButtonHref }}
https://github.com/usethis-python/usethis-python/pull/1890/files#diff-afc0adb361a850741696f1f06ca5585b135b66ff16583f6a71e46b9ba16fad39
https://github.com/usethis-python/usethis-python/pull/1890/files#diff-afc0adb361a850741696f1f06ca5585b135b66ff16583f6a71e46b9ba16fad39
.pre-commit-config.yamlhttps://github.com/usethis-python/usethis-python/pull/1890/files#diff-63a9c44a44acf85fea213a857769990937107cf072831e1a26808cfde9d096b9
View file https://github.com/usethis-python/usethis-python/blob/d5958d5bd98be303415af14d14c3bb000630208b/.pre-commit-config.yaml
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/usethis-python/usethis-python/pull/1890/{{ revealButtonHref }}
https://github.com/usethis-python/usethis-python/pull/1890/files#diff-63a9c44a44acf85fea213a857769990937107cf072831e1a26808cfde9d096b9
https://github.com/usethis-python/usethis-python/pull/1890/files#diff-63a9c44a44acf85fea213a857769990937107cf072831e1a26808cfde9d096b9
https://github.com/usethis-python/usethis-python/pull/1890/files#diff-63a9c44a44acf85fea213a857769990937107cf072831e1a26808cfde9d096b9
https://github.com/usethis-python/usethis-python/pull/1890/files#diff-63a9c44a44acf85fea213a857769990937107cf072831e1a26808cfde9d096b9
https://github.com/usethis-python/usethis-python/pull/1890/files#diff-63a9c44a44acf85fea213a857769990937107cf072831e1a26808cfde9d096b9
src/usethis/_deps.pyhttps://github.com/usethis-python/usethis-python/pull/1890/files#diff-f44a9615238e511d64e29d229199ac3aa1a300b699edf3f38e7325510abb7320
View file https://github.com/usethis-python/usethis-python/blob/d5958d5bd98be303415af14d14c3bb000630208b/src/usethis/_deps.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/usethis-python/usethis-python/pull/1890/{{ revealButtonHref }}
https://github.com/usethis-python/usethis-python/pull/1890/files#diff-f44a9615238e511d64e29d229199ac3aa1a300b699edf3f38e7325510abb7320
https://github.com/usethis-python/usethis-python/pull/1890/files#diff-f44a9615238e511d64e29d229199ac3aa1a300b699edf3f38e7325510abb7320
Please reload this pagehttps://github.com/usethis-python/usethis-python/pull/1890/files
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.