8000 Config plot option by aneda · Pull Request #260 · plotly/plotly.py · GitHub
[go: up one dir, main page]

Skip to content

Config plot option #260

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 21 commits into from
Jul 20, 2015
Merged
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
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
Update test_file_tools to use PlotlyTestCase
  • Loading branch information
theengineear committed Jul 15, 2015
commit 961c358e58426acb3e69b5a40381a29a395d80f3
5 changes: 2 additions & 3 deletions plotly/tests/test_core/test_tools/test_file_tools.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
from unittest import TestCase

from plotly import tools
from plotly import session
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🐄 When you import things from the same place, we usually choose the more compact notation:

from plotly import session, tools

from plotly.tests.utils import PlotlyTestCase


class FileToolsTest(TestCase):
class FileToolsTest(PlotlyTestCase):

def test_set_config_file_all_entries(self):

Expand Down
0