-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
Provide string interpolation support for async/dynamic dep attributes in R #1048
Merged
Merged
Changes from 18 commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
f32833c
:sparkles: async/dynamic support in R pkg deps
a40e246
:hocho: commented out line
c332a09
:see_no_evil: fix case errors and parens
eb18503
:see_no_evil: move async/dynamic to correct pos
744db9c
:sparkles: async/dynamic support in R pkg deps
1ca04e4
Merge branch '1042-async-rsupport' of github.com:plotly/dash into 104…
7643ecc
Merge branch 'dev' into 1042-async-rsupport
rpkyle 85a82ac
:necktie: satisfy linting overlords
ede3df4
Merge branch '1042-async-rsupport' of github.com:plotly/dash into 104…
269a1fa
:hocho: remove Authors block
2221282
:hocho: insert package version number
814022d
:hammer: use verbose :package: title and desc from YAML
54103c7
:sparkles: autodetect vignettes
a615eb2
fix package suggests autodefine
5a46be2
:see_no_evil: remove pdb
cc87f2e
:bug: specify title/desc if no yaml
3ff7607
:hocho: blank line if no VB, use get_async_type
f2171a7
check for author/maintainer address
03e7359
:hand: halt processing if fatal errors found
f53f7dc
autopopulate KeepSource
52a3394
remove error, auto-escape %
cb061bd
must auto-escape % in description too
1d5a112
:hocho: package-lock.json
45885a2
Merge branch 'dev' into 1042-async-rsupport
rpkyle b471d35
:hocho: remove examples from docstrings in R
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not part of this change, but I'm having trouble understanding why we process an array of length one differently from an array of length N
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The code doesn't really make much sense as written, but that's because I had trouble getting it to work with
enumerate
when I wrote it a year ago. I had only been programming in Python for a week or two, so this code is pretty much a giant pile of 💩. It needs some love and refactoring, no disagreement there.