Skip to content

Commit

Permalink
Fix link error, remove bad language
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew Stein <steinlink@gmail.com>
  • Loading branch information
texodus committed Aug 30, 2024
1 parent 4a1630c commit 7916992
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -998,8 +998,8 @@ namespace csv {

Result<std::shared_ptr<TableReader>>
TableReader::Make(
const io::IOContext& io_context,
const std::shared_ptr<io::InputStream>& input,
const io::IOContext io_context,
const std::shared_ptr<io::InputStream> input,
const ReadOptions& read_options,
const ParseOptions& parse_options,
const ConvertOptions& convert_options
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ namespace csv {

/// Create a TableReader instance
static Result<std::shared_ptr<TableReader>>
Make(const io::IOContext& io_context, const std::shared_ptr<io::InputStream>& input, const ReadOptions&, const ParseOptions&, const ConvertOptions&);
Make(io::IOContext io_context, std::shared_ptr<io::InputStream> input, const ReadOptions&, const ParseOptions&, const ConvertOptions&);

ARROW_DEPRECATED(
"Use MemoryPool-less variant (the IOContext holds a pool already)"
Expand Down
3 changes: 0 additions & 3 deletions packages/perspective-jupyterlab/test/jupyter/widget.spec.mts
Original file line number Diff line number Diff line change
Expand Up @@ -167,15 +167,12 @@ describe_jupyter(
let edit_mode = await getEditMode(viewer);
expect(edit_mode).toEqual("READ_ONLY");

console.error("Fuck1");
await add_and_execute_cell(
page,
'w.plugin_config = {"edit_mode": "EDIT"}'
);

console.error("Fuck2");
edit_mode = await getEditMode(viewer);
console.error("Fuck3");
expect(edit_mode).toEqual("EDIT");
}
);
Expand Down
1 change: 0 additions & 1 deletion rust/perspective-server/build/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ fn main() -> Result<(), std::io::Error> {

std::fs::write("docs/lib_gen.md", markdown.as_ref())?;
if std::option_env!("PSP_DISABLE_CPP").is_none() {
println!("cargo:warning=MESSAGE FUCKED");
if let Some(artifact_dir) = psp::cmake_build()? {
psp::cmake_link_deps(&artifact_dir)?;
psp::cxx_bridge_build();
Expand Down

0 comments on commit 7916992

Please sign in to comment.