-
Notifications
You must be signed in to change notification settings - Fork 49
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
100 char limit #159
100 char limit #159
Conversation
Codecov Report
@@ Coverage Diff @@
## develop #159 +/- ##
=======================================
Coverage 80.6% 80.6%
=======================================
Files 36 36
Lines 2527 2527
Branches 319 319
=======================================
Hits 2037 2037
Misses 386 386
Partials 104 104
Continue to review full report at Codecov.
|
@@ -41,7 +41,7 @@ def connect(self): | |||
self.logger.info('Connected to TheSkyX via {}:{}'.format(self._host, self._port)) | |||
|
|||
def write(self, value): | |||
assert type(value) is str | |||
assert isinstance(value, str) |
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.
Ah ha, found the one part of this reformat that wasn't a reformat! ;-)
This is the 100 char limit applied directly to develop.
The rebase with
1.0-beta
was getting ugly so I am essentially re-doing the "features" directly on develop now that we are all agreed to use develop.This will be follow by the fixes to the log file which will be followed by the merging of PACE and PEAS (as separate features)