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

WIP Modify IndentationBear and Add LineBreakBear #1528

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

aptrishu
Copy link
Member

For short term contributors: we understand that getting your commits well
defined like we require is a hard task and takes some learning. If you
look to help without wanting to contribute long term there's no need
for you to learn this. Just drop us a message and we'll take care of brushing
up your stuff for merge!

Checklist

  • I read the commit guidelines and I've followed
    them.
  • I ran coala over my code locally. (All commits have to pass
    individually.
    It is not sufficient to have "fixup commits" on your PR,
    our bot will still report the issues for the previous commit.) You will
    likely receive a lot of bot comments and build failures if coala does not
    pass on every single commit!

After you submit your pull request, DO NOT click the 'Update Branch' button.
When asked for a rebase, consult coala.io/rebase
instead.

Please consider helping us by reviewing other peoples pull requests as well:

The more you review, the more your score will grow at coala.io and we will
review your PRs faster!

@aptrishu aptrishu changed the title Modify IndentationBear and Add LineBreakBear WIP Modify IndentationBear and Add LineBreakBear Mar 21, 2017
@gitmate-bot
Copy link
Collaborator

Comment on 4219617.

Shortlog of the HEAD commit contains 52 character(s). This is 2 character(s) longer than the limit (52 > 50).

GitCommitBear, severity NORMAL, section commit.

encapsulators[encapsulator],
annotation_dict)))
print(encaps_pos)
indent = indentation_width*" " if use_spaces else "\t"
Copy link
Collaborator

Choose a reason for hiding this comment

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

You do not use the preferred quotation marks.

QuotesBear, severity NORMAL, section python.

The issue can be fixed by applying the following patch:

--- a/bears/general/LineBreakBear.py
+++ b/bears/general/LineBreakBear.py
@@ -76,7 +76,7 @@
                                       encapsulators[encapsulator],
                                       annotation_dict)))
         print(encaps_pos)
-        indent = indentation_width*" " if use_spaces else "\t"
+        indent = indentation_width*" " if use_spaces else '\t'
 
         suggested_positions = self._find_breakable_encapsulators(
             file,

encapsulators[encapsulator],
annotation_dict)))
print(encaps_pos)
indent = indentation_width*" " if use_spaces else "\t"
Copy link
Collaborator

Choose a reason for hiding this comment

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

You do not use the preferred quotation marks.

QuotesBear, severity NORMAL, section python.

The issue can be fixed by applying the following patch:

--- a/bears/general/LineBreakBear.py
+++ b/bears/general/LineBreakBear.py
@@ -76,7 +76,7 @@
                                       encapsulators[encapsulator],
                                       annotation_dict)))
         print(encaps_pos)
-        indent = indentation_width*" " if use_spaces else "\t"
+        indent = indentation_width*' ' if use_spaces else "\t"
 
         suggested_positions = self._find_breakable_encapsulators(
             file,

"""
encapsulators = dict(LanguageDefinition(
language,
coalang_dir=coalang_dir)["encapsulators"])
Copy link
Collaborator

Choose a reason for hiding this comment

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

You do not use the preferred quotation marks.

QuotesBear, severity NORMAL, section python.

The issue can be fixed by applying the following patch:

--- a/bears/general/LineBreakBear.py
+++ b/bears/general/LineBreakBear.py
@@ -55,7 +55,7 @@
         """
         encapsulators = dict(LanguageDefinition(
             language,
-            coalang_dir=coalang_dir)["encapsulators"])
+            coalang_dir=coalang_dir)['encapsulators'])
 
         # Get all lines which are over max_line_length
         line_length_bear = LineLengthBear(self.section, Queue())

self.section.append(Setting('use_spaces', False))
results = self.get_results(file)

self.assertEqual(changed_file, results[0].diffs["file"].modified)
Copy link
Collaborator

Choose a reason for hiding this comment

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

You do not use the preferred quotation marks.

QuotesBear, severity NORMAL, section python.

The issue can be fixed by applying the following patch:

--- a/tests/general/LineBreakBearTest.py
+++ b/tests/general/LineBreakBearTest.py
@@ -71,4 +71,4 @@
         self.section.append(Setting('use_spaces', False))
         results = self.get_results(file)
 
-        self.assertEqual(changed_file, results[0].diffs["file"].modified)
+        self.assertEqual(changed_file, results[0].diffs['file'].modified)

file = "func(p1,(p2,p3,p4,p5))\n".splitlines(True)

changed_file = ("func(p1,(\n"
"\tp2,p3,p4,p5))\n").splitlines(True)
Copy link
Collaborator

Choose a reason for hiding this comment

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

You do not use the preferred quotation marks.

QuotesBear, severity NORMAL, section python.

The issue can be fixed by applying the following patch:

--- a/tests/general/LineBreakBearTest.py
+++ b/tests/general/LineBreakBearTest.py
@@ -67,7 +67,7 @@
         file = "func(p1,(p2,p3,p4,p5))\n".splitlines(True)
 
         changed_file = ("func(p1,(\n"
-                        "\tp2,p3,p4,p5))\n").splitlines(True)
+                        '\tp2,p3,p4,p5))\n').splitlines(True)
         self.section.append(Setting('use_spaces', False))
         results = self.get_results(file)
 


file = "func(p1,(p2,p3,p4,p5))\n".splitlines(True)

changed_file = ("func(p1,(\n"
Copy link
Collaborator

Choose a reason for hiding this comment

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

You do not use the preferred quotation marks.

QuotesBear, severity NORMAL, section python.

The issue can be fixed by applying the following patch:

--- a/tests/general/LineBreakBearTest.py
+++ b/tests/general/LineBreakBearTest.py
@@ -66,7 +66,7 @@
 
         file = "func(p1,(p2,p3,p4,p5))\n".splitlines(True)
 
-        changed_file = ("func(p1,(\n"
+        changed_file = ('func(p1,(\n'
                         "\tp2,p3,p4,p5))\n").splitlines(True)
         self.section.append(Setting('use_spaces', False))
         results = self.get_results(file)


def test_settings(self):

file = "func(p1,(p2,p3,p4,p5))\n".splitlines(True)
Copy link
Collaborator

Choose a reason for hiding this comment

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

You do not use the preferred quotation marks.

QuotesBear, severity NORMAL, section python.

The issue can be fixed by applying the following patch:

--- a/tests/general/LineBreakBearTest.py
+++ b/tests/general/LineBreakBearTest.py
@@ -64,7 +64,7 @@
 
     def test_settings(self):
 
-        file = "func(p1,(p2,p3,p4,p5))\n".splitlines(True)
+        file = 'func(p1,(p2,p3,p4,p5))\n'.splitlines(True)
 
         changed_file = ("func(p1,(\n"
                         "\tp2,p3,p4,p5))\n").splitlines(True)

changed_file = ("func(p1,[\n"
" p2,p3,p4,p5])\n").splitlines(True)
results = self.get_results(file)
self.assertEqual(changed_file, results[0].diffs["file"].modified)
Copy link
Collaborator

Choose a reason for hiding this comment

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

You do not use the preferred quotation marks.

QuotesBear, severity NORMAL, section python.

The issue can be fixed by applying the following patch:

--- a/tests/general/LineBreakBearTest.py
+++ b/tests/general/LineBreakBearTest.py
@@ -60,7 +60,7 @@
         changed_file = ("func(p1,[\n"
                         "    p2,p3,p4,p5])\n").splitlines(True)
         results = self.get_results(file)
-        self.assertEqual(changed_file, results[0].diffs["file"].modified)
+        self.assertEqual(changed_file, results[0].diffs['file'].modified)
 
     def test_settings(self):
 

# Test different types of encapsulators
file = "func(p1,[p2,p3,p4,p5])\n".splitlines(True)
changed_file = ("func(p1,[\n"
" p2,p3,p4,p5])\n").splitlines(True)
Copy link
Collaborator

Choose a reason for hiding this comment

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

You do not use the preferred quotation marks.

QuotesBear, severity NORMAL, section python.

The issue can be fixed by applying the following patch:

--- a/tests/general/LineBreakBearTest.py
+++ b/tests/general/LineBreakBearTest.py
@@ -58,7 +58,7 @@
         # Test different types of encapsulators
         file = "func(p1,[p2,p3,p4,p5])\n".splitlines(True)
         changed_file = ("func(p1,[\n"
-                        "    p2,p3,p4,p5])\n").splitlines(True)
+                        '    p2,p3,p4,p5])\n').splitlines(True)
         results = self.get_results(file)
         self.assertEqual(changed_file, results[0].diffs["file"].modified)
 


# Test different types of encapsulators
file = "func(p1,[p2,p3,p4,p5])\n".splitlines(True)
changed_file = ("func(p1,[\n"
Copy link
Collaborator

Choose a reason for hiding this comment

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

You do not use the preferred quotation marks.

QuotesBear, severity NORMAL, section python.

The issue can be fixed by applying the following patch:

--- a/tests/general/LineBreakBearTest.py
+++ b/tests/general/LineBreakBearTest.py
@@ -57,7 +57,7 @@
 
         # Test different types of encapsulators
         file = "func(p1,[p2,p3,p4,p5])\n".splitlines(True)
-        changed_file = ("func(p1,[\n"
+        changed_file = ('func(p1,[\n'
                         "    p2,p3,p4,p5])\n").splitlines(True)
         results = self.get_results(file)
         self.assertEqual(changed_file, results[0].diffs["file"].modified)

self.assertEqual(results, [])

# Test different types of encapsulators
file = "func(p1,[p2,p3,p4,p5])\n".splitlines(True)
Copy link
Collaborator

Choose a reason for hiding this comment

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

You do not use the preferred quotation marks.

QuotesBear, severity NORMAL, section python.

The issue can be fixed by applying the following patch:

--- a/tests/general/LineBreakBearTest.py
+++ b/tests/general/LineBreakBearTest.py
@@ -56,7 +56,7 @@
         self.assertEqual(results, [])
 
         # Test different types of encapsulators
-        file = "func(p1,[p2,p3,p4,p5])\n".splitlines(True)
+        file = 'func(p1,[p2,p3,p4,p5])\n'.splitlines(True)
         changed_file = ("func(p1,[\n"
                         "    p2,p3,p4,p5])\n").splitlines(True)
         results = self.get_results(file)

self.assertEqual(changed_file, results[0].diffs["file"].modified)

# Testing encapsulator after max_line_length
file = "very_very_long_func(p1)\n".splitlines(True)
Copy link
Collaborator

Choose a reason for hiding this comment

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

You do not use the preferred quotation marks.

QuotesBear, severity NORMAL, section python.

The issue can be fixed by applying the following patch:

--- a/tests/general/LineBreakBearTest.py
+++ b/tests/general/LineBreakBearTest.py
@@ -51,7 +51,7 @@
         self.assertEqual(changed_file, results[0].diffs["file"].modified)
 
         # Testing encapsulator after max_line_length
-        file = "very_very_long_func(p1)\n".splitlines(True)
+        file = 'very_very_long_func(p1)\n'.splitlines(True)
         results = self.get_results(file)
         self.assertEqual(results, [])
 

" p2,p3,p4,p5))\n").splitlines(True)
results = self.get_results(file)

self.assertEqual(changed_file, results[0].diffs["file"].modified)
Copy link
Collaborator

Choose a reason for hiding this comment

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

You do not use the preferred quotation marks.

QuotesBear, severity NORMAL, section python.

The issue can be fixed by applying the following patch:

--- a/tests/general/LineBreakBearTest.py
+++ b/tests/general/LineBreakBearTest.py
@@ -48,7 +48,7 @@
                         "    p2,p3,p4,p5))\n").splitlines(True)
         results = self.get_results(file)
 
-        self.assertEqual(changed_file, results[0].diffs["file"].modified)
+        self.assertEqual(changed_file, results[0].diffs['file'].modified)
 
         # Testing encapsulator after max_line_length
         file = "very_very_long_func(p1)\n".splitlines(True)

file = "func(p1,(p2,p3,p4,p5))\n".splitlines(True)

changed_file = ("func(p1,(\n"
" p2,p3,p4,p5))\n").splitlines(True)
Copy link
Collaborator

Choose a reason for hiding this comment

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

You do not use the preferred quotation marks.

QuotesBear, severity NORMAL, section python.

The issue can be fixed by applying the following patch:

--- a/tests/general/LineBreakBearTest.py
+++ b/tests/general/LineBreakBearTest.py
@@ -45,7 +45,7 @@
         file = "func(p1,(p2,p3,p4,p5))\n".splitlines(True)
 
         changed_file = ("func(p1,(\n"
-                        "    p2,p3,p4,p5))\n").splitlines(True)
+                        '    p2,p3,p4,p5))\n').splitlines(True)
         results = self.get_results(file)
 
         self.assertEqual(changed_file, results[0].diffs["file"].modified)


file = "func(p1,(p2,p3,p4,p5))\n".splitlines(True)

changed_file = ("func(p1,(\n"
Copy link
Collaborator

Choose a reason for hiding this comment

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

You do not use the preferred quotation marks.

QuotesBear, severity NORMAL, section python.

The issue can be fixed by applying the following patch:

--- a/tests/general/LineBreakBearTest.py
+++ b/tests/general/LineBreakBearTest.py
@@ -44,7 +44,7 @@
 
         file = "func(p1,(p2,p3,p4,p5))\n".splitlines(True)
 
-        changed_file = ("func(p1,(\n"
+        changed_file = ('func(p1,(\n'
                         "    p2,p3,p4,p5))\n").splitlines(True)
         results = self.get_results(file)
 


self.assertEqual(changed_file, results[0].diffs["file"].modified)

file = "func(p1,(p2,p3,p4,p5))\n".splitlines(True)
Copy link
Collaborator

Choose a reason for hiding this comment

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

You do not use the preferred quotation marks.

QuotesBear, severity NORMAL, section python.

The issue can be fixed by applying the following patch:

--- a/tests/general/LineBreakBearTest.py
+++ b/tests/general/LineBreakBearTest.py
@@ -42,7 +42,7 @@
 
         self.assertEqual(changed_file, results[0].diffs["file"].modified)
 
-        file = "func(p1,(p2,p3,p4,p5))\n".splitlines(True)
+        file = 'func(p1,(p2,p3,p4,p5))\n'.splitlines(True)
 
         changed_file = ("func(p1,(\n"
                         "    p2,p3,p4,p5))\n").splitlines(True)


results = self.get_results(file)

self.assertEqual(changed_file, results[0].diffs["file"].modified)
Copy link
Collaborator

Choose a reason for hiding this comment

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

You do not use the preferred quotation marks.

QuotesBear, severity NORMAL, section python.

The issue can be fixed by applying the following patch:

--- a/tests/general/LineBreakBearTest.py
+++ b/tests/general/LineBreakBearTest.py
@@ -40,7 +40,7 @@
 
         results = self.get_results(file)
 
-        self.assertEqual(changed_file, results[0].diffs["file"].modified)
+        self.assertEqual(changed_file, results[0].diffs['file'].modified)
 
         file = "func(p1,(p2,p3,p4,p5))\n".splitlines(True)
 

file = "text(greater than 10 letters)\n".splitlines(True)

changed_file = ("text(\n"
" greater than 10 letters)\n").splitlines(True)
Copy link
Collaborator

Choose a reason for hiding this comment

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

You do not use the preferred quotation marks.

QuotesBear, severity NORMAL, section python.

The issue can be fixed by applying the following patch:

--- a/tests/general/LineBreakBearTest.py
+++ b/tests/general/LineBreakBearTest.py
@@ -36,7 +36,7 @@
         file = "text(greater than 10 letters)\n".splitlines(True)
 
         changed_file = ("text(\n"
-                        "    greater than 10 letters)\n").splitlines(True)
+                        '    greater than 10 letters)\n').splitlines(True)
 
         results = self.get_results(file)
 


file = "text(greater than 10 letters)\n".splitlines(True)

changed_file = ("text(\n"
Copy link
Collaborator

Choose a reason for hiding this comment

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

You do not use the preferred quotation marks.

QuotesBear, severity NORMAL, section python.

The issue can be fixed by applying the following patch:

--- a/tests/general/LineBreakBearTest.py
+++ b/tests/general/LineBreakBearTest.py
@@ -35,7 +35,7 @@
 
         file = "text(greater than 10 letters)\n".splitlines(True)
 
-        changed_file = ("text(\n"
+        changed_file = ('text(\n'
                         "    greater than 10 letters)\n").splitlines(True)
 
         results = self.get_results(file)


def test_break_on_encapsulators(self):

file = "text(greater than 10 letters)\n".splitlines(True)
Copy link
Collaborator

Choose a reason for hiding this comment

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

You do not use the preferred quotation marks.

QuotesBear, severity NORMAL, section python.

The issue can be fixed by applying the following patch:

--- a/tests/general/LineBreakBearTest.py
+++ b/tests/general/LineBreakBearTest.py
@@ -33,7 +33,7 @@
 
     def test_break_on_encapsulators(self):
 
-        file = "text(greater than 10 letters)\n".splitlines(True)
+        file = 'text(greater than 10 letters)\n'.splitlines(True)
 
         changed_file = ("text(\n"
                         "    greater than 10 letters)\n").splitlines(True)

{AnnotationBear.__name__:
list(annot_results)},
'file': file}
return list(uut.run_bear_from_section(["file"], arg_dict))
Copy link
Collaborator

Choose a reason for hiding this comment

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

You do not use the preferred quotation marks.

QuotesBear, severity NORMAL, section python.

The issue can be fixed by applying the following patch:

--- a/tests/general/LineBreakBearTest.py
+++ b/tests/general/LineBreakBearTest.py
@@ -29,7 +29,7 @@
                     {AnnotationBear.__name__:
                      list(annot_results)},
                     'file': file}
-        return list(uut.run_bear_from_section(["file"], arg_dict))
+        return list(uut.run_bear_from_section(['file'], arg_dict))
 
     def test_break_on_encapsulators(self):
 

def get_results(self, file, section=None):
if section is None:
section = self.section
annot_results = self.annot_uut.execute("file", file)
Copy link
Collaborator

Choose a reason for hiding this comment

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

You do not use the preferred quotation marks.

QuotesBear, severity NORMAL, section python.

The issue can be fixed by applying the following patch:

--- a/tests/general/LineBreakBearTest.py
+++ b/tests/general/LineBreakBearTest.py
@@ -23,7 +23,7 @@
     def get_results(self, file, section=None):
         if section is None:
             section = self.section
-        annot_results = self.annot_uut.execute("file", file)
+        annot_results = self.annot_uut.execute('file', file)
         uut = LineBreakBear(section, Queue())
         arg_dict = {'dependency_results':
                     {AnnotationBear.__name__:

self.section.append(Setting('language', 'test'))
self.section.append(Setting('max_line_length', 10))
self.section.append(Setting('coalang_dir', escape(os.path.join(
os.path.dirname(__file__), "test_files"), '\\')))
Copy link
Collaborator

Choose a reason for hiding this comment

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

You do not use the preferred quotation marks.

QuotesBear, severity NORMAL, section python.

The issue can be fixed by applying the following patch:

--- a/tests/general/LineBreakBearTest.py
+++ b/tests/general/LineBreakBearTest.py
@@ -17,7 +17,7 @@
         self.section.append(Setting('language', 'test'))
         self.section.append(Setting('max_line_length', 10))
         self.section.append(Setting('coalang_dir', escape(os.path.join(
-            os.path.dirname(__file__), "test_files"), '\\')))
+            os.path.dirname(__file__), 'test_files'), '\\')))
         self.annot_uut = AnnotationBear(self.section, Queue())
 
     def get_results(self, file, section=None):

class LineBreakBearTest(unittest.TestCase):

def setUp(self):
self.section = Section("")
Copy link
Collaborator

Choose a reason for hiding this comment

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

You do not use the preferred quotation marks.

QuotesBear, severity NORMAL, section python.

The issue can be fixed by applying the following patch:

--- a/tests/general/LineBreakBearTest.py
+++ b/tests/general/LineBreakBearTest.py
@@ -13,7 +13,7 @@
 class LineBreakBearTest(unittest.TestCase):
 
     def setUp(self):
-        self.section = Section("")
+        self.section = Section('')
         self.section.append(Setting('language', 'test'))
         self.section.append(Setting('max_line_length', 10))
         self.section.append(Setting('coalang_dir', escape(os.path.join(

@gitmate-bot
Copy link
Collaborator

Comment on 4219617.

Shortlog of the HEAD commit contains 52 character(s). This is 2 character(s) longer than the limit (52 > 50).

GitCommitBear, severity NORMAL, section commit.

Move Generic methods and exceptions from IndentationBear
to RangeHelpers and CustomExceptions. Also it modifies
the bear to support indent based on keywords.
It adds a basic LineBreakBear and its tests.
@aptrishu
Copy link
Member Author

#1332 should be merged first.
tests are failing because of that.

@aptrishu
Copy link
Member Author

TODO - exceptions and rangehelpers should be moved to other folder.

@gitmate-bot
Copy link
Collaborator

Hey! This pull request hasn't been updated for a while :/ It would be nice if we could get this going again!

17 similar comments
@gitmate-bot
Copy link
Collaborator

Hey! This pull request hasn't been updated for a while :/ It would be nice if we could get this going again!

@gitmate-bot
Copy link
Collaborator

Hey! This pull request hasn't been updated for a while :/ It would be nice if we could get this going again!

@gitmate-bot
Copy link
Collaborator

Hey! This pull request hasn't been updated for a while :/ It would be nice if we could get this going again!

@gitmate-bot
Copy link
Collaborator

Hey! This pull request hasn't been updated for a while :/ It would be nice if we could get this going again!

@gitmate-bot
Copy link
Collaborator

Hey! This pull request hasn't been updated for a while :/ It would be nice if we could get this going again!

@gitmate-bot
Copy link
Collaborator

Hey! This pull request hasn't been updated for a while :/ It would be nice if we could get this going again!

@gitmate-bot
Copy link
Collaborator

Hey! This pull request hasn't been updated for a while :/ It would be nice if we could get this going again!

@gitmate-bot
Copy link
Collaborator

Hey! This pull request hasn't been updated for a while :/ It would be nice if we could get this going again!

@gitmate-bot
Copy link
Collaborator

Hey! This pull request hasn't been updated for a while :/ It would be nice if we could get this going again!

@gitmate-bot
Copy link
Collaborator

Hey! This pull request hasn't been updated for a while :/ It would be nice if we could get this going again!

@gitmate-bot
Copy link
Collaborator

Hey! This pull request hasn't been updated for a while :/ It would be nice if we could get this going again!

@gitmate-bot
Copy link
Collaborator

Hey! This pull request hasn't been updated for a while :/ It would be nice if we could get this going again!

@gitmate-bot
Copy link
Collaborator

Hey! This pull request hasn't been updated for a while :/ It would be nice if we could get this going again!

@gitmate-bot
Copy link
Collaborator

Hey! This pull request hasn't been updated for a while :/ It would be nice if we could get this going again!

@gitmate-bot
Copy link
Collaborator

Hey! This pull request hasn't been updated for a while :/ It would be nice if we could get this going again!

@gitmate-bot
Copy link
Collaborator

Hey! This pull request hasn't been updated for a while :/ It would be nice if we could get this going again!

@gitmate-bot
Copy link
Collaborator

Hey! This pull request hasn't been updated for a while :/ It would be nice if we could get this going again!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Development

Successfully merging this pull request may close these issues.

2 participants