Skip to content

Commit

Permalink
Fix linting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
funilrys committed Jun 22, 2019
1 parent 8ca81ce commit 5221052
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions PyFunceble/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ class Merge: # pylint: disable=too-few-public-methods

def __init__(self, configuration_path):
config_link = Version(True).right_url_from_version(
"https://raw.githubusercontent.com/funilrys/PyFunceble/master/.PyFunceble_production.yaml"
"https://raw.githubusercontent.com/funilrys/PyFunceble/master/.PyFunceble_production.yaml" # pylint: disable=line-too-long
)

self.path_to_config = configuration_path
Expand Down Expand Up @@ -563,9 +563,7 @@ def __init__(self, used=False):
# We initiate the link to the upstream version file.
# It is hard coded because we may not have the chance to have the
# configuration file everytime we need it.
upstream_link = (
"https://raw.githubusercontent.com/funilrys/PyFunceble/master/version.yaml"
) # pylint: disable=line-too-long
upstream_link = "https://raw.githubusercontent.com/funilrys/PyFunceble/master/version.yaml" # pylint: disable=line-too-long

# We update the link according to our current version.
upstream_link = self.right_url_from_version(upstream_link)
Expand Down

0 comments on commit 5221052

Please sign in to comment.