cosmetic changes

This commit is contained in:
Jan Petykiewicz 2020-05-11 19:10:00 -07:00
parent 157df47884
commit 79990e3806
2 changed files with 2 additions and 2 deletions

View File

@ -77,7 +77,7 @@ class Label:
def __init__(self, def __init__(self,
string: str, string: str,
offset: vector2=(0.0, 0.0), offset: vector2 = (0.0, 0.0),
layer: layer_t = 0, layer: layer_t = 0,
locked: bool = False): locked: bool = False):
self.unlock() self.unlock()

View File

@ -1,5 +1,5 @@
""" """
Base object for containing a lithography mask. Base object representing a lithography mask.
""" """
from typing import List, Callable, Tuple, Dict, Union, Set, Sequence, Optional, Type from typing import List, Callable, Tuple, Dict, Union, Set, Sequence, Optional, Type