Skip to content

Commit

Permalink
Fix new lint warning (#11635)
Browse files Browse the repository at this point in the history
Looks like there was a new release of flake8-bugbear
  • Loading branch information
hauntsaninja committed Nov 29, 2021
1 parent e557ec2 commit 4f59ca4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mypy/join.py
Expand Up @@ -29,7 +29,7 @@ def join_instances(self, t: Instance, s: Instance) -> ProperType:

self.seen_instances.append((t, s))

"""Calculate the join of two instance types."""
# Calculate the join of two instance types
if t.type == s.type:
# Simplest case: join two types with the same base type (but
# potentially different arguments).
Expand Down

0 comments on commit 4f59ca4

Please sign in to comment.