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

Remove unncessary whitespace #156

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions cli/axicli.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
For quick help:
python axicli.py --help

Full user guide:
Full user guide:
https://axidraw.com/doc/cli_api/


This script is a stand-alone version of AxiDraw Control, accepting
This script is a stand-alone version of AxiDraw Control, accepting
various options and providing a facility for setting default values.

'''
Expand Down
4 changes: 2 additions & 2 deletions cli/test/test_axicli/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

class UtilsTestCase(unittest.TestCase):


def test_get_configured_value_no_configs(self):
""" If no configs are provided, raise an error """
with self.assertRaises(BaseException):
Expand Down Expand Up @@ -60,7 +60,7 @@ def test_assign_option_values(self):
configured_values = { "not_overridden": "configured value", "overridden": "configured value" }
command_line_values = optparse.Values({ "not_overridden": None, "overridden": "commandline value" })
resulting_options = optparse.Values() # will contain the result of running assign_option_values

assign_option_values(resulting_options, command_line_values, [configured_values], option_names)

self.assertTrue(hasattr(resulting_options, "not_overridden"))
Expand Down
2 changes: 1 addition & 1 deletion inkscape driver/axidraw_control.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def effect( self ):
* If no port is specified, use the first available AxiDraw

1: Use first AxiDraw located via USB, even if a port is given.

2: Use only specified port, given by self.options.port

3: Plot to all attached AxiDraw units
Expand Down
Loading