8000 feat: tasks and ci by eliassjogreen · Pull Request #45 · denosaurs/deno_python · GitHub
[go: up one dir, main page]

Skip to content

feat: tasks and ci #45

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Aug 14, 2023
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fix: typescript error
  • Loading branch information
eliassjogreen committed Aug 14, 2023
commit 09ec9e4c91e814aaac8dec2ab54fb0c0ac0f1e3f
2 changes: 1 addition & 1 deletion ext/pip.ts
< 4E83 td id="diff-7c005b455ca2f80f5a75f99196042325c09bf972cada18cb8421314446661726L43" data-line-number="43" class="blob-num blob-num-context js-linkable-line-number">
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ function getModuleNameAndVersion(module: string): {
export class Pip {
#cacheLocation: Promise<string>;

constructor(location: CacheLocation) {
constructor(location?: CacheLocation) {
this.#cacheLocation = Promise.all([
ensureCacheLocation(location),
globalThis.location !== undefined
Expand Down
0