coala / coala-quickstart

A tool that generates an initial coala config file for you!
GNU Affero General Public License v3.0
47 stars 76 forks source link

Enable quote bears #169

Closed MalkmusT closed 6 years ago

MalkmusT commented 7 years ago

This PR contains two commits. In the first one the QuoteBear is enabled for the coala-quickstart. The second one contains the automatic fixes of QuoteBear.

gitmate-bot commented 7 years ago

Comment on 912456a7bdeddd6c44060b88cc1a66592e8d3464, file coala_quickstart/Strings.py, line 44.

You do not use the preferred quotation marks.

QuotesBear, severity NORMAL, section python.

The issue can be fixed by applying the following patch:

--- a/coala_quickstart/Strings.py
+++ b/coala_quickstart/Strings.py
@@ -41,7 +41,7 @@
 """.format(GLOB_HELP_URL)

 BEAR_DOCS_URL = ("https://github.com/coala/bear-docs/blob/master/"
-                 "README.rst#supported-languages")
+                 'README.rst#supported-languages')
 BEAR_HELP = """
 A coala bear is a plugin that contains the checking routines. It may be
 language specific or language independent. This makes coala completely
gitmate-bot commented 7 years ago

Comment on 912456a7bdeddd6c44060b88cc1a66592e8d3464, file coala_quickstart/Strings.py, line 43.

You do not use the preferred quotation marks.

QuotesBear, severity NORMAL, section python.

The issue can be fixed by applying the following patch:

--- a/coala_quickstart/Strings.py
+++ b/coala_quickstart/Strings.py
@@ -40,7 +40,7 @@
 question and `.git/**,**/*.o` for the second question.
 """.format(GLOB_HELP_URL)

-BEAR_DOCS_URL = ("https://github.com/coala/bear-docs/blob/master/"
+BEAR_DOCS_URL = ('https://github.com/coala/bear-docs/blob/master/'
                  "README.rst#supported-languages")
 BEAR_HELP = """
 A coala bear is a plugin that contains the checking routines. It may be
gitmate-bot commented 7 years ago

Comment on 912456a7bdeddd6c44060b88cc1a66592e8d3464, file coala_quickstart/Strings.py, line 30.

You do not use the preferred quotation marks.

QuotesBear, severity NORMAL, section python.

The issue can be fixed by applying the following patch:

--- a/coala_quickstart/Strings.py
+++ b/coala_quickstart/Strings.py
@@ -27,7 +27,7 @@
                     "some basic questions."]

-GLOB_HELP_URL = "http://coala.readthedocs.io/en/latest/Users/Glob_Patterns.html"
+GLOB_HELP_URL = 'http://coala.readthedocs.io/en/latest/Users/Glob_Patterns.html'
 GLOB_HELP = """
 File globs are a very concise way to specify a large
 number of files. You may give multiple file globs
gitmate-bot commented 7 years ago

Comment on 912456a7bdeddd6c44060b88cc1a66592e8d3464, file coala_quickstart/Strings.py, line 27.

You do not use the preferred quotation marks.

QuotesBear, severity NORMAL, section python.

The issue can be fixed by applying the following patch:

--- a/coala_quickstart/Strings.py
+++ b/coala_quickstart/Strings.py
@@ -24,7 +24,7 @@
                     "in the project directory.",

                     "We can help you with that. Let's get started with "
-                    "some basic questions."]
+                    'some basic questions.']

 GLOB_HELP_URL = "http://coala.readthedocs.io/en/latest/Users/Glob_Patterns.html"
gitmate-bot commented 7 years ago

Comment on 912456a7bdeddd6c44060b88cc1a66592e8d3464, file coala_quickstart/Strings.py, line 24.

You do not use the preferred quotation marks.

QuotesBear, severity NORMAL, section python.

The issue can be fixed by applying the following patch:

--- a/coala_quickstart/Strings.py
+++ b/coala_quickstart/Strings.py
@@ -21,7 +21,7 @@

                     "You can configure coala to suit your needs. This "
                     "is done with a settings file called a `.coafile` "
-                    "in the project directory.",
+                    'in the project directory.',

                     "We can help you with that. Let's get started with "
                     "some basic questions."]
gitmate-bot commented 7 years ago

Comment on 912456a7bdeddd6c44060b88cc1a66592e8d3464, file coala_quickstart/Strings.py, line 23.

You do not use the preferred quotation marks.

QuotesBear, severity NORMAL, section python.

The issue can be fixed by applying the following patch:

--- a/coala_quickstart/Strings.py
+++ b/coala_quickstart/Strings.py
@@ -20,7 +20,7 @@
                     "quality coding. coala is just the tool you need!",

                     "You can configure coala to suit your needs. This "
-                    "is done with a settings file called a `.coafile` "
+                    'is done with a settings file called a `.coafile` '
                     "in the project directory.",

                     "We can help you with that. Let's get started with "
gitmate-bot commented 7 years ago

Comment on 912456a7bdeddd6c44060b88cc1a66592e8d3464, file coala_quickstart/Strings.py, line 22.

You do not use the preferred quotation marks.

QuotesBear, severity NORMAL, section python.

The issue can be fixed by applying the following patch:

--- a/coala_quickstart/Strings.py
+++ b/coala_quickstart/Strings.py
@@ -19,7 +19,7 @@
 WELCOME_MESSAGES = ["Hi there! Awesome you decided to do some high "
                     "quality coding. coala is just the tool you need!",

-                    "You can configure coala to suit your needs. This "
+                    'You can configure coala to suit your needs. This '
                     "is done with a settings file called a `.coafile` "
                     "in the project directory.",
gitmate-bot commented 7 years ago

Comment on 912456a7bdeddd6c44060b88cc1a66592e8d3464, file coala_quickstart/Strings.py, line 20.

You do not use the preferred quotation marks.

QuotesBear, severity NORMAL, section python.

The issue can be fixed by applying the following patch:

--- a/coala_quickstart/Strings.py
+++ b/coala_quickstart/Strings.py
@@ -17,7 +17,7 @@
 COALA_BEAR_LOGO = LOGO_STRING.split("\n")

 WELCOME_MESSAGES = ["Hi there! Awesome you decided to do some high "
-                    "quality coding. coala is just the tool you need!",
+                    'quality coding. coala is just the tool you need!',

                     "You can configure coala to suit your needs. This "
                     "is done with a settings file called a `.coafile` "
gitmate-bot commented 7 years ago

Comment on 912456a7bdeddd6c44060b88cc1a66592e8d3464, file coala_quickstart/Strings.py, line 19.

You do not use the preferred quotation marks.

QuotesBear, severity NORMAL, section python.

The issue can be fixed by applying the following patch:

--- a/coala_quickstart/Strings.py
+++ b/coala_quickstart/Strings.py
@@ -16,7 +16,7 @@
 """
 COALA_BEAR_LOGO = LOGO_STRING.split("\n")

-WELCOME_MESSAGES = ["Hi there! Awesome you decided to do some high "
+WELCOME_MESSAGES = ['Hi there! Awesome you decided to do some high '
                     "quality coding. coala is just the tool you need!",

                     "You can configure coala to suit your needs. This "
gitmate-bot commented 7 years ago

Comment on 912456a7bdeddd6c44060b88cc1a66592e8d3464, file coala_quickstart/Strings.py, line 17.

You do not use the preferred quotation marks.

QuotesBear, severity NORMAL, section python.

The issue can be fixed by applying the following patch:

--- a/coala_quickstart/Strings.py
+++ b/coala_quickstart/Strings.py
@@ -14,7 +14,7 @@
           Y           ,o8P
                oooo888P"
 """
-COALA_BEAR_LOGO = LOGO_STRING.split("\n")
+COALA_BEAR_LOGO = LOGO_STRING.split('\n')

 WELCOME_MESSAGES = ["Hi there! Awesome you decided to do some high "
                     "quality coding. coala is just the tool you need!",
gitmate-bot commented 7 years ago

Comment on 912456a7bdeddd6c44060b88cc1a66592e8d3464, file coala_quickstart/generation/SettingsFilling.py, line 132.

You do not use the preferred quotation marks.

QuotesBear, severity NORMAL, section python.

The issue can be fixed by applying the following patch:

--- a/coala_quickstart/generation/SettingsFilling.py
+++ b/coala_quickstart/generation/SettingsFilling.py
@@ -129,7 +129,7 @@
             if (scope.check_belongs_to_scope(
                     section, bears)):
                 values = extracted_info.get(
-                    mapping["info_kind"].__name__)
+                    mapping['info_kind'].__name__)
                 for val in values:
                     if scope.check_is_applicable_information(val):
                         return True
gitmate-bot commented 7 years ago

Comment on 912456a7bdeddd6c44060b88cc1a66592e8d3464, file coala_quickstart/generation/SettingsFilling.py, line 128.

You do not use the preferred quotation marks.

QuotesBear, severity NORMAL, section python.

The issue can be fixed by applying the following patch:

--- a/coala_quickstart/generation/SettingsFilling.py
+++ b/coala_quickstart/generation/SettingsFilling.py
@@ -125,7 +125,7 @@
     """
     if INFO_SETTING_MAPS.get(setting_key):
         for mapping in INFO_SETTING_MAPS[setting_key]:
-            scope = mapping["scope"]
+            scope = mapping['scope']
             if (scope.check_belongs_to_scope(
                     section, bears)):
                 values = extracted_info.get(
gitmate-bot commented 7 years ago

Comment on 912456a7bdeddd6c44060b88cc1a66592e8d3464, file coala_quickstart/generation/SettingsFilling.py, line 116.

You do not use the preferred quotation marks.

QuotesBear, severity NORMAL, section python.

The issue can be fixed by applying the following patch:

--- a/coala_quickstart/generation/SettingsFilling.py
+++ b/coala_quickstart/generation/SettingsFilling.py
@@ -113,7 +113,7 @@
                 if values:
                     for val in values:
                         if scope.check_is_applicable_information(val):
-                            yield mapping["mapper_function"](val)
+                            yield mapping['mapper_function'](val)

 def is_autofill_possible(setting_key,
gitmate-bot commented 7 years ago

Comment on 912456a7bdeddd6c44060b88cc1a66592e8d3464, file coala_quickstart/generation/SettingsFilling.py, line 112.

You do not use the preferred quotation marks.

QuotesBear, severity NORMAL, section python.

The issue can be fixed by applying the following patch:

--- a/coala_quickstart/generation/SettingsFilling.py
+++ b/coala_quickstart/generation/SettingsFilling.py
@@ -109,7 +109,7 @@
                 # look for the values in extracted information
                 # from all the ``InfoExtractor`` instances.
                 values = extracted_information.get(
-                    mapping["info_kind"].__name__)
+                    mapping['info_kind'].__name__)
                 if values:
                     for val in values:
                         if scope.check_is_applicable_information(val):
gitmate-bot commented 7 years ago

Comment on 912456a7bdeddd6c44060b88cc1a66592e8d3464, file coala_quickstart/generation/SettingsFilling.py, line 106.

You do not use the preferred quotation marks.

QuotesBear, severity NORMAL, section python.

The issue can be fixed by applying the following patch:

--- a/coala_quickstart/generation/SettingsFilling.py
+++ b/coala_quickstart/generation/SettingsFilling.py
@@ -103,7 +103,7 @@
     """
     if INFO_SETTING_MAPS.get(setting_key):
         for mapping in INFO_SETTING_MAPS[setting_key]:
-            scope = mapping["scope"]
+            scope = mapping['scope']
             if (scope.check_belongs_to_scope(
                     section, bears)):
                 # look for the values in extracted information
gitmate-bot commented 7 years ago

Comment on 912456a7bdeddd6c44060b88cc1a66592e8d3464, file tests/info_extractors/UtilitiesTest.py, line 141.

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/info_extractors/UtilitiesTest.py
+++ b/tests/info_extractors/UtilitiesTest.py
@@ -138,4 +138,4 @@
                                     "key1.1": "value1.1",
                                 }
                               ],
-                              [("key2", "key1.1"), ("key1", "key1.1")])
+                              [("key2", "key1.1"), ("key1", 'key1.1')])
gitmate-bot commented 7 years ago

Comment on 912456a7bdeddd6c44060b88cc1a66592e8d3464, file tests/info_extractors/UtilitiesTest.py, line 141.

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/info_extractors/UtilitiesTest.py
+++ b/tests/info_extractors/UtilitiesTest.py
@@ -138,4 +138,4 @@
                                     "key1.1": "value1.1",
                                 }
                               ],
-                              [("key2", "key1.1"), ("key1", "key1.1")])
+                              [("key2", "key1.1"), ('key1', "key1.1")])
gitmate-bot commented 7 years ago

Comment on 912456a7bdeddd6c44060b88cc1a66592e8d3464, file tests/info_extractors/UtilitiesTest.py, line 141.

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/info_extractors/UtilitiesTest.py
+++ b/tests/info_extractors/UtilitiesTest.py
@@ -138,4 +138,4 @@
                                     "key1.1": "value1.1",
                                 }
                               ],
-                              [("key2", "key1.1"), ("key1", "key1.1")])
+                              [("key2", 'key1.1'), ("key1", "key1.1")])
gitmate-bot commented 7 years ago

Comment on 912456a7bdeddd6c44060b88cc1a66592e8d3464, file tests/info_extractors/UtilitiesTest.py, line 141.

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/info_extractors/UtilitiesTest.py
+++ b/tests/info_extractors/UtilitiesTest.py
@@ -138,4 +138,4 @@
                                     "key1.1": "value1.1",
                                 }
                               ],
-                              [("key2", "key1.1"), ("key1", "key1.1")])
+                              [('key2', "key1.1"), ("key1", "key1.1")])
gitmate-bot commented 7 years ago

Comment on 912456a7bdeddd6c44060b88cc1a66592e8d3464, file tests/info_extractors/UtilitiesTest.py, line 138.

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/info_extractors/UtilitiesTest.py
+++ b/tests/info_extractors/UtilitiesTest.py
@@ -135,7 +135,7 @@
                                     "key2.1": "value2.1"
                                 },
                                 {
-                                    "key1.1": "value1.1",
+                                    "key1.1": 'value1.1',
                                 }
                               ],
                               [("key2", "key1.1"), ("key1", "key1.1")])
gitmate-bot commented 7 years ago

Comment on 912456a7bdeddd6c44060b88cc1a66592e8d3464, file tests/info_extractors/UtilitiesTest.py, line 138.

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/info_extractors/UtilitiesTest.py
+++ b/tests/info_extractors/UtilitiesTest.py
@@ -135,7 +135,7 @@
                                     "key2.1": "value2.1"
                                 },
                                 {
-                                    "key1.1": "value1.1",
+                                    'key1.1': "value1.1",
                                 }
                               ],
                               [("key2", "key1.1"), ("key1", "key1.1")])
gitmate-bot commented 7 years ago

Comment on 912456a7bdeddd6c44060b88cc1a66592e8d3464, file tests/info_extractors/UtilitiesTest.py, line 135.

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/info_extractors/UtilitiesTest.py
+++ b/tests/info_extractors/UtilitiesTest.py
@@ -132,7 +132,7 @@
                               [
                                 {
                                     "key1.1": "value1.1",
-                                    "key2.1": "value2.1"
+                                    "key2.1": 'value2.1'
                                 },
                                 {
                                     "key1.1": "value1.1",
gitmate-bot commented 7 years ago

Comment on 912456a7bdeddd6c44060b88cc1a66592e8d3464, file tests/info_extractors/UtilitiesTest.py, line 135.

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/info_extractors/UtilitiesTest.py
+++ b/tests/info_extractors/UtilitiesTest.py
@@ -132,7 +132,7 @@
                               [
                                 {
                                     "key1.1": "value1.1",
-                                    "key2.1": "value2.1"
+                                    'key2.1': "value2.1"
                                 },
                                 {
                                     "key1.1": "value1.1",
gitmate-bot commented 7 years ago

Comment on 912456a7bdeddd6c44060b88cc1a66592e8d3464, file tests/info_extractors/UtilitiesTest.py, line 134.

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/info_extractors/UtilitiesTest.py
+++ b/tests/info_extractors/UtilitiesTest.py
@@ -131,7 +131,7 @@
                               "value1.1",
                               [
                                 {
-                                    "key1.1": "value1.1",
+                                    "key1.1": 'value1.1',
                                     "key2.1": "value2.1"
                                 },
                                 {
gitmate-bot commented 7 years ago

Comment on 912456a7bdeddd6c44060b88cc1a66592e8d3464, file tests/info_extractors/UtilitiesTest.py, line 134.

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/info_extractors/UtilitiesTest.py
+++ b/tests/info_extractors/UtilitiesTest.py
@@ -131,7 +131,7 @@
                               "value1.1",
                               [
                                 {
-                                    "key1.1": "value1.1",
+                                    'key1.1': "value1.1",
                                     "key2.1": "value2.1"
                                 },
                                 {
gitmate-bot commented 7 years ago

Comment on 912456a7bdeddd6c44060b88cc1a66592e8d3464, file tests/info_extractors/UtilitiesTest.py, line 131.

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/info_extractors/UtilitiesTest.py
+++ b/tests/info_extractors/UtilitiesTest.py
@@ -128,7 +128,7 @@

         assert_value_and_path(self.dict_with_repeated_structure,
                               "key1.1",
-                              "value1.1",
+                              'value1.1',
                               [
                                 {
                                     "key1.1": "value1.1",
gitmate-bot commented 7 years ago

Comment on 912456a7bdeddd6c44060b88cc1a66592e8d3464, file tests/info_extractors/UtilitiesTest.py, line 130.

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/info_extractors/UtilitiesTest.py
+++ b/tests/info_extractors/UtilitiesTest.py
@@ -127,7 +127,7 @@
                               [("key1", "key1.1"), ("key2", "key1.1")])

         assert_value_and_path(self.dict_with_repeated_structure,
-                              "key1.1",
+                              'key1.1',
                               "value1.1",
                               [
                                 {
gitmate-bot commented 7 years ago

Comment on 912456a7bdeddd6c44060b88cc1a66592e8d3464, file tests/info_extractors/UtilitiesTest.py, line 127.

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/info_extractors/UtilitiesTest.py
+++ b/tests/info_extractors/UtilitiesTest.py
@@ -124,7 +124,7 @@
                               "key1.1",
                               None,
                               ["value1.1", "value1.1"],
-                              [("key1", "key1.1"), ("key2", "key1.1")])
+                              [("key1", "key1.1"), ("key2", 'key1.1')])

         assert_value_and_path(self.dict_with_repeated_structure,
                               "key1.1",
gitmate-bot commented 7 years ago

Comment on 912456a7bdeddd6c44060b88cc1a66592e8d3464, file tests/info_extractors/UtilitiesTest.py, line 127.

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/info_extractors/UtilitiesTest.py
+++ b/tests/info_extractors/UtilitiesTest.py
@@ -124,7 +124,7 @@
                               "key1.1",
                               None,
                               ["value1.1", "value1.1"],
-                              [("key1", "key1.1"), ("key2", "key1.1")])
+                              [("key1", "key1.1"), ('key2', "key1.1")])

         assert_value_and_path(self.dict_with_repeated_structure,
                               "key1.1",
gitmate-bot commented 7 years ago

Comment on 912456a7bdeddd6c44060b88cc1a66592e8d3464, file tests/info_extractors/UtilitiesTest.py, line 127.

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/info_extractors/UtilitiesTest.py
+++ b/tests/info_extractors/UtilitiesTest.py
@@ -124,7 +124,7 @@
                               "key1.1",
                               None,
                               ["value1.1", "value1.1"],
-                              [("key1", "key1.1"), ("key2", "key1.1")])
+                              [("key1", 'key1.1'), ("key2", "key1.1")])

         assert_value_and_path(self.dict_with_repeated_structure,
                               "key1.1",
gitmate-bot commented 7 years ago

Comment on 912456a7bdeddd6c44060b88cc1a66592e8d3464, file tests/info_extractors/UtilitiesTest.py, line 127.

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/info_extractors/UtilitiesTest.py
+++ b/tests/info_extractors/UtilitiesTest.py
@@ -124,7 +124,7 @@
                               "key1.1",
                               None,
                               ["value1.1", "value1.1"],
-                              [("key1", "key1.1"), ("key2", "key1.1")])
+                              [('key1', "key1.1"), ("key2", "key1.1")])

         assert_value_and_path(self.dict_with_repeated_structure,
                               "key1.1",
gitmate-bot commented 7 years ago

Comment on 912456a7bdeddd6c44060b88cc1a66592e8d3464, file tests/info_extractors/UtilitiesTest.py, line 126.

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/info_extractors/UtilitiesTest.py
+++ b/tests/info_extractors/UtilitiesTest.py
@@ -123,7 +123,7 @@
         assert_value_and_path(self.dict_with_repeated_structure,
                               "key1.1",
                               None,
-                              ["value1.1", "value1.1"],
+                              ["value1.1", 'value1.1'],
                               [("key1", "key1.1"), ("key2", "key1.1")])

         assert_value_and_path(self.dict_with_repeated_structure,
gitmate-bot commented 7 years ago

Comment on 912456a7bdeddd6c44060b88cc1a66592e8d3464, file tests/info_extractors/UtilitiesTest.py, line 126.

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/info_extractors/UtilitiesTest.py
+++ b/tests/info_extractors/UtilitiesTest.py
@@ -123,7 +123,7 @@
         assert_value_and_path(self.dict_with_repeated_structure,
                               "key1.1",
                               None,
-                              ["value1.1", "value1.1"],
+                              ['value1.1', "value1.1"],
                               [("key1", "key1.1"), ("key2", "key1.1")])

         assert_value_and_path(self.dict_with_repeated_structure,
gitmate-bot commented 7 years ago

Comment on 912456a7bdeddd6c44060b88cc1a66592e8d3464, file tests/info_extractors/UtilitiesTest.py, line 124.

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/info_extractors/UtilitiesTest.py
+++ b/tests/info_extractors/UtilitiesTest.py
@@ -121,7 +121,7 @@
                               [(1, "key3")])

         assert_value_and_path(self.dict_with_repeated_structure,
-                              "key1.1",
+                              'key1.1',
                               None,
                               ["value1.1", "value1.1"],
                               [("key1", "key1.1"), ("key2", "key1.1")])
gitmate-bot commented 7 years ago

Comment on 912456a7bdeddd6c44060b88cc1a66592e8d3464, file tests/info_extractors/UtilitiesTest.py, line 121.

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/info_extractors/UtilitiesTest.py
+++ b/tests/info_extractors/UtilitiesTest.py
@@ -118,7 +118,7 @@
                                   "key3": "value3",
                                   "key4": "value4"
                               }],
-                              [(1, "key3")])
+                              [(1, 'key3')])

         assert_value_and_path(self.dict_with_repeated_structure,
                               "key1.1",
gitmate-bot commented 7 years ago

Comment on 912456a7bdeddd6c44060b88cc1a66592e8d3464, file tests/info_extractors/UtilitiesTest.py, line 119.

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/info_extractors/UtilitiesTest.py
+++ b/tests/info_extractors/UtilitiesTest.py
@@ -116,7 +116,7 @@
                               "value3",
                               [{
                                   "key3": "value3",
-                                  "key4": "value4"
+                                  "key4": 'value4'
                               }],
                               [(1, "key3")])
gitmate-bot commented 7 years ago

Comment on 912456a7bdeddd6c44060b88cc1a66592e8d3464, file coala_quickstart/info_extractors/Utilities.py, line 64.

You do not use the preferred quotation marks.

QuotesBear, severity NORMAL, section python.

The issue can be fixed by applying the following patch:

--- a/coala_quickstart/info_extractors/Utilities.py
+++ b/coala_quickstart/info_extractors/Utilities.py
@@ -61,7 +61,7 @@
                                                      idx=-1)
     else:
         raise TypeError(
-            "The object to be searched should only contain these types: {}"
+            'The object to be searched should only contain these types: {}'
             .format(','.join([str(t) for t in supported_types])))

     return results
gitmate-bot commented 7 years ago

Comment on 912456a7bdeddd6c44060b88cc1a66592e8d3464, file coala_quickstart/info_extractors/Utilities.py, line 54.

You do not use the preferred quotation marks.

QuotesBear, severity NORMAL, section python.

The issue can be fixed by applying the following patch:

--- a/coala_quickstart/info_extractors/Utilities.py
+++ b/coala_quickstart/info_extractors/Utilities.py
@@ -51,7 +51,7 @@
                 elif value is None:
                     results.append({
                         "object": v,
-                        "path": path
+                        'path': path
                     })
             elif isinstance(v, supported_types):
                 results += search_object_recursively(v,
gitmate-bot commented 7 years ago

Comment on 912456a7bdeddd6c44060b88cc1a66592e8d3464, file coala_quickstart/info_extractors/Utilities.py, line 53.

You do not use the preferred quotation marks.

QuotesBear, severity NORMAL, section python.

The issue can be fixed by applying the following patch:

--- a/coala_quickstart/info_extractors/Utilities.py
+++ b/coala_quickstart/info_extractors/Utilities.py
@@ -50,7 +50,7 @@
                     })
                 elif value is None:
                     results.append({
-                        "object": v,
+                        'object': v,
                         "path": path
                     })
             elif isinstance(v, supported_types):
gitmate-bot commented 7 years ago

Comment on 912456a7bdeddd6c44060b88cc1a66592e8d3464, file coala_quickstart/info_extractors/Utilities.py, line 49.

You do not use the preferred quotation marks.

QuotesBear, severity NORMAL, section python.

The issue can be fixed by applying the following patch:

--- a/coala_quickstart/info_extractors/Utilities.py
+++ b/coala_quickstart/info_extractors/Utilities.py
@@ -46,7 +46,7 @@
                 if value is not None and v == value:
                     results.append({
                             "object": search_object,
-                            "path": path
+                            'path': path
                     })
                 elif value is None:
                     results.append({
gitmate-bot commented 7 years ago

Comment on 912456a7bdeddd6c44060b88cc1a66592e8d3464, file coala_quickstart/info_extractors/Utilities.py, line 48.

You do not use the preferred quotation marks.

QuotesBear, severity NORMAL, section python.

The issue can be fixed by applying the following patch:

--- a/coala_quickstart/info_extractors/Utilities.py
+++ b/coala_quickstart/info_extractors/Utilities.py
@@ -45,7 +45,7 @@
             if k == key:
                 if value is not None and v == value:
                     results.append({
-                            "object": search_object,
+                            'object': search_object,
                             "path": path
                     })
                 elif value is None:
gitmate-bot commented 7 years ago

Comment on 912456a7bdeddd6c44060b88cc1a66592e8d3464, file setup.py, line 38.

You do not use the preferred quotation marks.

QuotesBear, severity NORMAL, section python.

The issue can be fixed by applying the following patch:

--- a/setup.py
+++ b/setup.py
@@ -35,7 +35,7 @@
                            "coala - the COde AnaLysis Application.",
           entry_points={
               "console_scripts": [
-                  "coala-quickstart = coala_quickstart.coala_quickstart:main"
+                  'coala-quickstart = coala_quickstart.coala_quickstart:main'
                   ]},
           # from http://pypi.python.org/pypi?%3Aaction=list_classifiers
           classifiers=[
gitmate-bot commented 7 years ago

Comment on 912456a7bdeddd6c44060b88cc1a66592e8d3464, file setup.py, line 37.

You do not use the preferred quotation marks.

QuotesBear, severity NORMAL, section python.

The issue can be fixed by applying the following patch:

--- a/setup.py
+++ b/setup.py
@@ -34,7 +34,7 @@
                            "set up coala easier "
                            "coala - the COde AnaLysis Application.",
           entry_points={
-              "console_scripts": [
+              'console_scripts': [
                   "coala-quickstart = coala_quickstart.coala_quickstart:main"
                   ]},
           # from http://pypi.python.org/pypi?%3Aaction=list_classifiers
gitmate-bot commented 7 years ago

Comment on 912456a7bdeddd6c44060b88cc1a66592e8d3464, file setup.py, line 35.

You do not use the preferred quotation marks.

QuotesBear, severity NORMAL, section python.

The issue can be fixed by applying the following patch:

--- a/setup.py
+++ b/setup.py
@@ -32,7 +32,7 @@
           license="AGPL-3.0",
           long_description="coala-quickstart is a tool to help you "
                            "set up coala easier "
-                           "coala - the COde AnaLysis Application.",
+                           'coala - the COde AnaLysis Application.',
           entry_points={
               "console_scripts": [
                   "coala-quickstart = coala_quickstart.coala_quickstart:main"
gitmate-bot commented 7 years ago

Comment on 912456a7bdeddd6c44060b88cc1a66592e8d3464, file setup.py, line 34.

You do not use the preferred quotation marks.

QuotesBear, severity NORMAL, section python.

The issue can be fixed by applying the following patch:

--- a/setup.py
+++ b/setup.py
@@ -31,7 +31,7 @@
           tests_require=test_required,
           license="AGPL-3.0",
           long_description="coala-quickstart is a tool to help you "
-                           "set up coala easier "
+                           'set up coala easier '
                            "coala - the COde AnaLysis Application.",
           entry_points={
               "console_scripts": [
gitmate-bot commented 7 years ago

Comment on 912456a7bdeddd6c44060b88cc1a66592e8d3464, file setup.py, line 33.

You do not use the preferred quotation marks.

QuotesBear, severity NORMAL, section python.

The issue can be fixed by applying the following patch:

--- a/setup.py
+++ b/setup.py
@@ -30,7 +30,7 @@
           install_requires=required,
           tests_require=test_required,
           license="AGPL-3.0",
-          long_description="coala-quickstart is a tool to help you "
+          long_description='coala-quickstart is a tool to help you '
                            "set up coala easier "
                            "coala - the COde AnaLysis Application.",
           entry_points={
gitmate-bot commented 7 years ago

Comment on 912456a7bdeddd6c44060b88cc1a66592e8d3464, file setup.py, line 32.

You do not use the preferred quotation marks.

QuotesBear, severity NORMAL, section python.

The issue can be fixed by applying the following patch:

--- a/setup.py
+++ b/setup.py
@@ -29,7 +29,7 @@
           packages=find_packages(exclude=["build.*", "*.tests.*", "*.tests"]),
           install_requires=required,
           tests_require=test_required,
-          license="AGPL-3.0",
+          license='AGPL-3.0',
           long_description="coala-quickstart is a tool to help you "
                            "set up coala easier "
                            "coala - the COde AnaLysis Application.",
gitmate-bot commented 7 years ago

Comment on 912456a7bdeddd6c44060b88cc1a66592e8d3464, file setup.py, line 29.

You do not use the preferred quotation marks.

QuotesBear, severity NORMAL, section python.

The issue can be fixed by applying the following patch:

--- a/setup.py
+++ b/setup.py
@@ -26,7 +26,7 @@
                             'c.adhityaa@gmail.com'),
           url='http://coala.rtfd.org/',
           platforms='any',
-          packages=find_packages(exclude=["build.*", "*.tests.*", "*.tests"]),
+          packages=find_packages(exclude=["build.*", "*.tests.*", '*.tests']),
           install_requires=required,
           tests_require=test_required,
           license="AGPL-3.0",
gitmate-bot commented 7 years ago

Comment on 912456a7bdeddd6c44060b88cc1a66592e8d3464, file setup.py, line 29.

You do not use the preferred quotation marks.

QuotesBear, severity NORMAL, section python.

The issue can be fixed by applying the following patch:

--- a/setup.py
+++ b/setup.py
@@ -26,7 +26,7 @@
                             'c.adhityaa@gmail.com'),
           url='http://coala.rtfd.org/',
           platforms='any',
-          packages=find_packages(exclude=["build.*", "*.tests.*", "*.tests"]),
+          packages=find_packages(exclude=["build.*", '*.tests.*', "*.tests"]),
           install_requires=required,
           tests_require=test_required,
           license="AGPL-3.0",
gitmate-bot commented 7 years ago

Comment on 912456a7bdeddd6c44060b88cc1a66592e8d3464, file setup.py, line 29.

You do not use the preferred quotation marks.

QuotesBear, severity NORMAL, section python.

The issue can be fixed by applying the following patch:

--- a/setup.py
+++ b/setup.py
@@ -26,7 +26,7 @@
                             'c.adhityaa@gmail.com'),
           url='http://coala.rtfd.org/',
           platforms='any',
-          packages=find_packages(exclude=["build.*", "*.tests.*", "*.tests"]),
+          packages=find_packages(exclude=['build.*', "*.tests.*", "*.tests"]),
           install_requires=required,
           tests_require=test_required,
           license="AGPL-3.0",