From f1e37c42479865ab77dfc6d7b77078815cbbc2b8 Mon Sep 17 00:00:00 2001 From: Christensen Date: Mon, 5 Oct 2020 14:14:26 -0500 Subject: [PATCH] flake8 fixes --- pytools/tag.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pytools/tag.py b/pytools/tag.py index 0155e52..12e6b82 100644 --- a/pytools/tag.py +++ b/pytools/tag.py @@ -2,10 +2,9 @@ from __future__ import annotations from dataclasses import dataclass from typing import (Tuple, Any, FrozenSet) - - # {{{ dotted name + class DottedName: """ .. attribute:: name_parts @@ -42,12 +41,14 @@ class DottedName: "start with double underscores") return cls(name_parts) + # }}} # {{{ tag tag_dataclass = dataclass(init=True, eq=True, frozen=True, repr=True) + @tag_dataclass class Tag: """ -- GitLab