@@ -1031,12 +1031,10 @@ def _def_ast( # pylint: disable=too-many-locals,too-many-statements
10311031 # where we directly set the Var meta for the running Basilisp instance
10321032 # this causes problems since we'll end up getting something like
10331033 # `(quote ([] [v]))` rather than simply `([] [v])`.
1034- arglists_meta = def_meta .val_at (ARGLISTS_KW ) # type: ignore
1034+ arglists_meta = def_meta .val_at (ARGLISTS_KW )
10351035 if isinstance (arglists_meta , llist .PersistentList ):
10361036 assert arglists_meta .first == SpecialForm .QUOTE
1037- var_meta = def_meta .update ( # type: ignore
1038- {ARGLISTS_KW : runtime .nth (arglists_meta , 1 )}
1039- )
1037+ var_meta = def_meta .update ({ARGLISTS_KW : runtime .nth (arglists_meta , 1 )})
10401038 else :
10411039 var_meta = def_meta
10421040
@@ -1055,7 +1053,7 @@ def _def_ast( # pylint: disable=too-many-locals,too-many-statements
10551053 var = Var .intern_unbound (
10561054 ns_sym ,
10571055 bare_name ,
1058- dynamic = def_meta .val_at (SYM_DYNAMIC_META_KEY , False ), # type: ignore
1056+ dynamic = def_meta .val_at (SYM_DYNAMIC_META_KEY , False ),
10591057 meta = var_meta ,
10601058 )
10611059
@@ -1076,7 +1074,7 @@ def _def_ast( # pylint: disable=too-many-locals,too-many-statements
10761074 "generated inline function"
10771075 )
10781076 var .alter_meta (lambda m : m .assoc (SYM_INLINE_META_KW , init .inline_fn )) # type: ignore[misc]
1079- def_meta = def_meta .assoc (SYM_INLINE_META_KW , init .inline_fn .form ) # type: ignore[union-attr]
1077+ def_meta = def_meta .assoc (SYM_INLINE_META_KW , init .inline_fn .form )
10801078
10811079 if tag_ast is not None and any (
10821080 arity .tag is not None for arity in init .arities
@@ -1113,7 +1111,7 @@ def _def_ast( # pylint: disable=too-many-locals,too-many-statements
11131111 # some-name
11141112 # "some value")
11151113 meta_ast = _analyze_form (
1116- def_meta .update ( # type: ignore
1114+ def_meta .update (
11171115 {
11181116 NAME_KW : llist .l (SpecialForm .QUOTE , bare_name ),
11191117 NS_KW : llist .l (
0 commit comments