Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-shields committed Mar 16, 2021
1 parent 55b2273 commit 9c067a3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/uberjob/_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,12 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
from typing import Tuple

from uberjob.graph import Graph, Node


def get_full_scope(graph: Graph, node: Node):
def get_full_scope(graph: Graph, node: Node) -> Tuple:
node_data = graph.nodes[node]
return node_data["scope"] + node_data.get("implicit_scope", ())

Expand Down

0 comments on commit 9c067a3

Please sign in to comment.