Skip to content

Commit

Permalink
Refactor super() calls from pantsbuild#8637
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric-Arellano committed Nov 18, 2019
1 parent c6e53ba commit 7f0aa77
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -68,7 +68,7 @@ def get_external_url_generator(self):
class CoursierUrlGenerator(BinaryToolUrlGenerator):

def __init__(self, template_urls):
super(CoursierUrlGenerator, self).__init__()
super().__init__()
self._template_urls = template_urls

def generate_urls(self, version, host_platform):
Expand Down
2 changes: 1 addition & 1 deletion src/python/pants/ivy/ivy_subsystem.py
Expand Up @@ -126,7 +126,7 @@ def repository_cache_dir(self):
class IvyUrlGenerator(BinaryToolUrlGenerator):

def __init__(self, template_urls):
super(IvyUrlGenerator, self).__init__()
super().__init__()
self._template_urls = template_urls

def generate_urls(self, version, host_platform):
Expand Down

0 comments on commit 7f0aa77

Please sign in to comment.