Skip to content

Commit

Permalink
Fix fmt
Browse files Browse the repository at this point in the history
Signed-off-by: Max Hoffman <[email protected]>
  • Loading branch information
max-hoffman committed Apr 29, 2021
1 parent c8049a9 commit e38d3fe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion flytekit/core/promise.py
Original file line number Diff line number Diff line change
Expand Up @@ -621,7 +621,7 @@ def node_id(self):

@property
def node(self) -> Node:
""""""
""" """
return self._node

def __repr__(self) -> str:
Expand Down
4 changes: 2 additions & 2 deletions plugins/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,15 @@ def install_all_plugins(sources, develop=False):


class DevelopCmd(develop):
""" Add custom steps for the develop command """
"""Add custom steps for the develop command"""

def run(self):
install_all_plugins(SOURCES, develop=True)
develop.run(self)


class InstallCmd(install):
""" Add custom steps for the install command """
"""Add custom steps for the install command"""

def run(self):
install_all_plugins(SOURCES, develop=False)
Expand Down

0 comments on commit e38d3fe

Please sign in to comment.