Skip to content
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

wait more + update copyright #493

Merged
merged 1 commit into from
Mar 30, 2024
Merged
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
2 changes: 1 addition & 1 deletion movie/creation/movieCreator.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@
raise ProbablyFailedToLaunchBrowser(errorText) from exception

self.browser.execute_script("flushAllD3Transitions();")
time.sleep(0.6) # flushAllD3Transitions doesn't seem to work, so just sleep
time.sleep(1.5) # flushAllD3Transitions doesn't seem to work, so just sleep

Check warning on line 139 in movie/creation/movieCreator.py

View check run for this annotation

Codecov / codecov/patch

movie/creation/movieCreator.py#L139

Added line #L139 was not covered by tests

with tempfile.NamedTemporaryFile(suffix=".png") as tf:
self.browser.save_screenshot(tf.name)
Expand Down
2 changes: 1 addition & 1 deletion templates/visualizer/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ <h5 class="mb-2">About RCVis</h5>
<!-- Copyright Section -->
<section class="copyright py-4 text-center text-white">
<div class="container">
<small>Copyright &copy; 2022, Robot Armin LLC</small>
<small>Copyright &copy; 2024, Robot Armin LLC</small>
</div>
</section>
</div>
Expand Down
Loading